File tree Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ Name: `______________________________`
185
185
Try changing to your linuxhome directory (i.e., ` cd ~ ` ).
186
186
Otherwise you’ll be waiting * all day* for Code::Blocks to open up.
187
187
- If Code::Blocks doesn't let you navigate to your cloned repository, you can find it by going the long way.
188
- You can find your SDRIVE by going to its absolute path: ` /nethome/users/<username>/cs1001 /lab09/ ` (or whatever you call your repository.)
188
+ You can find your SDRIVE by going to its absolute path: ` /nethome/users/<username>/cs1585 /lab09/ ` (or whatever you call your repository.)
189
189
190
190
### Building with Code::Blocks
191
191
Original file line number Diff line number Diff line change @@ -17,28 +17,30 @@ MD_PIECES = 00-FrontMatter.md \
17
17
18
18
EXTENSIONS = raw_tex+fenced_code_attributes
19
19
20
+ TITLE = tools-for-computer-scientists
21
+
20
22
# Runs every time `make` is called;
21
23
# check to see whether the index has become dirty!
22
24
DIRTY := $(shell ./dirty.sh)
23
25
24
26
.PHONY : all tex dirty
25
27
26
- all : cs1001_prelab .pdf
28
+ all : ${TITLE} .pdf
27
29
28
- tex : cs1001_prelab .tex
30
+ tex : ${TITLE} .tex
29
31
30
32
quick : tex
31
- xelatex cs1001_prelab .tex
33
+ xelatex ${TITLE} .tex
32
34
33
- book : cs1001_prelab .pdf
34
- pdfbook --short-edge --letterpaper cs1001_prelab .pdf
35
+ book : ${TITLE} .pdf
36
+ pdfbook --short-edge --letterpaper ${TITLE} .pdf
35
37
@echo -e " \n\nDone! Be sure to print that bad-boy using short-edge duplexing."
36
38
37
- cs1001_prelab .pdf : ${MD_PIECES} template.tex .commit-info.tex
38
- pandoc --latex-engine=xelatex --template=template.tex --from markdown+${EXTENSIONS} --output cs1001_prelab .pdf ${MD_PIECES}
39
+ ${TITLE} .pdf : ${MD_PIECES} template.tex .commit-info.tex
40
+ pandoc --latex-engine=xelatex --template=template.tex --from markdown+${EXTENSIONS} --output ${TITLE} .pdf ${MD_PIECES}
39
41
40
- cs1001_prelab .tex : ${MD_PIECES} template.tex .commit-info.tex
41
- pandoc --latex-engine=xelatex --template=template.tex --standalone --from markdown+${EXTENSIONS} --output cs1001_prelab .tex ${MD_PIECES}
42
+ ${TITLE} .tex : ${MD_PIECES} template.tex .commit-info.tex
43
+ pandoc --latex-engine=xelatex --template=template.tex --standalone --from markdown+${EXTENSIONS} --output ${TITLE} .tex ${MD_PIECES}
42
44
43
45
% .pdf : 00-FrontMatter.md %* .md .commit-info.tex
44
46
pandoc --latex-engine=xelatex --template=template.tex --from markdown+${EXTENSIONS} --output $@ $(filter % .md, $^ )
You can’t perform that action at this time.
0 commit comments