We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12cf196 commit b335af2Copy full SHA for b335af2
Makefile
@@ -44,15 +44,15 @@ NOTES= $(TEX_FILES) $(NOTE_TEX)
44
all: slides notes spellcheck
45
46
slides: $(SLIDES)
47
- @for i in ${SLIDES}; do \
+ @for i in $(SLIDES); do \
48
new=`echo $$i | sed -e 's/.tex/.m4.tex/g'`; \
49
$(M4) -D NOSPELLCHECK $$i > $$new; \
50
done
51
$(LATEX) $(SLIDE_TEX:tex=m4.tex)
52
mv $(SLIDE_TEX:tex=m4.pdf) $(SLIDE_PDF)
53
54
notes: $(NOTES)
55
- @for i in ${NOTES}; do \
+ @for i in $(NOTES); do \
56
57
58
0 commit comments