initial latex framework
This commit is contained in:
24
Makefile
Normal file
24
Makefile
Normal file
@@ -0,0 +1,24 @@
|
||||
MAIN := framework.pdf
|
||||
SRC := $(basename $(MAIN)).tex
|
||||
DEP := \
|
||||
config/headfoot.tex \
|
||||
config/sourcelst.tex \
|
||||
config/titlepage.tex \
|
||||
Makefile
|
||||
|
||||
all: $(MAIN) $(DEP)
|
||||
|
||||
clean:
|
||||
rm -f \
|
||||
$(basename $(MAIN)).aux \
|
||||
$(basename $(MAIN)).dvi \
|
||||
$(basename $(MAIN)).log \
|
||||
$(basename $(MAIN)).out \
|
||||
$(basename $(MAIN)).toc \
|
||||
$(MAIN)
|
||||
|
||||
$(MAIN):
|
||||
@latex $(SRC)
|
||||
latex $(SRC)
|
||||
dvipdf $(basename $(MAIN)).dvi $(MAIN)
|
||||
|
Reference in New Issue
Block a user