Makefile
This commit is contained in:
parent
4fc9a75d12
commit
1edec96c28
2 changed files with 18 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -2,3 +2,5 @@
|
|||
*.log
|
||||
*.out
|
||||
*.pdf
|
||||
*.fdb_latexmk
|
||||
*.fls
|
||||
|
|
16
Makefile
Normal file
16
Makefile
Normal file
|
@ -0,0 +1,16 @@
|
|||
|
||||
ALLTEX := $(wildcard *.tex)
|
||||
ALLPDF := $(ALLTEX:.tex=.pdf)
|
||||
|
||||
all: $(ALLPDF)
|
||||
|
||||
.PHONY: clean allclean all
|
||||
|
||||
clean:
|
||||
latexmk -c
|
||||
|
||||
distclean:
|
||||
latexmk -C
|
||||
|
||||
%.pdf :: %.tex cccbform.cls logo.pdf
|
||||
latexmk -pdflua $<
|
Loading…
Add table
Add a link
Reference in a new issue