PROJECTNAME=$(basename $(wildcard *.tex)) LIBS=$(notdir $(wildcard libs/*)) FIGS=$(notdir $(wildcard figs/*.fig)) PDFS=$(addsuffix .pdf, $(PROJECTNAME)) SYNCTEXS=$(addsuffix .synctex.gz, $(PROJECTNAME)) all: $(PROJECTNAME) $(PROJECTNAME): $(LIBS) $(FIGS) pdflatex -file-line-error $@.tex pdflatex -synctex=1 $@.tex $(SYNCTEXS): $(LIBS) $(FIGS) pdflatex -synctex=1 $(patsubst %.synctex.gz, %.tex, $@) install: $(PROJECTNAME) cp $^.pdf $(INSTALLDIR)/ install-synctex: $(SYNCTEXS) cp $^ $(INSTALLDIR)/ $(LIBS): ln -fs libs/$@ ./ $(FIGS): make -C figs/$@ ln -fs figs/$@/*.pdf ./ clean-aux: rm -f $(addsuffix .aux, $(PROJECTNAME)) rm -f $(addsuffix .log, $(PROJECTNAME)) rm -f $(addsuffix .out, $(PROJECTNAME)) clean-libs: rm -f $(LIBS) clean-figs: $(foreach fig,$(addprefix figs/, $(FIGS)), make -C $(fig) clean; ) rm -f $(notdir $(wildcard figs/*.fig/*.pdf)) clean-figs-aux: $(foreach fig,$(addprefix figs/, $(FIGS)), make -C $(fig) clean-aux; ) clean-tex: rm -f $(PDFS) $(SYNCTEXS) clean: clean-aux clean-tex clean-libs clean-figs