diff options
author | Ian Jauslin <jauslin@ias.edu> | 2017-05-04 19:16:34 +0000 |
---|---|---|
committer | Ian Jauslin <jauslin@ias.edu> | 2017-05-04 21:11:59 +0000 |
commit | 1b13e14750d355b301dc3904702268687216608c (patch) | |
tree | 8169e8da7cb246c5d3fa47d13fdcaf5dcb199a12 /figs/libs/Makefile |
Initial commitv0.0
Diffstat (limited to 'figs/libs/Makefile')
-rw-r--r-- | figs/libs/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/figs/libs/Makefile b/figs/libs/Makefile new file mode 100644 index 0000000..994463b --- /dev/null +++ b/figs/libs/Makefile @@ -0,0 +1,25 @@ +PROJECTNAME=$(basename $(basename $(wildcard *.tikz.tex))) +LIBS=$(notdir $(wildcard libs/*)) + +PDFS=$(addsuffix .pdf, $(PROJECTNAME)) + +all: $(PDFS) + +$(PDFS): $(LIBS) + echo $(LIBS) + pdflatex -jobname $(basename $@) -file-line-error $(patsubst %.pdf, %.tikz.tex, $@) + +$(LIBS): + ln -fs libs/$@ ./ + +clean-libs: + rm -f $(LIBS) + +clean-aux: + rm -f $(addsuffix .aux, $(PROJECTNAME)) + rm -f $(addsuffix .log, $(PROJECTNAME)) + +clean-tex: + rm -f $(PDFS) + +clean: clean-libs clean-aux clean-tex |