16 lines
256 B
Makefile
16 lines
256 B
Makefile
MAIN=presentasjon
|
|
DEMOS=$(wildcard demo*)
|
|
|
|
${MAIN}:
|
|
pdflatex ${MAIN}
|
|
# bibtex ${MAIN}
|
|
# pdflatex ${MAIN}
|
|
pdflatex ${MAIN}
|
|
|
|
all: ${MAIN}
|
|
@for f in ${DEMOS}; do \
|
|
(cd $$f; make); done
|
|
|
|
clean:
|
|
rm *.aux *.gls *.idx *.ilg *.ind *.log *.nlo *.nls *.pdf
|