diff options
| author | Ian Jauslin <ian@jauslin.org> | 2022-10-17 20:59:01 -0400 | 
|---|---|---|
| committer | Ian Jauslin <ian@jauslin.org> | 2022-10-17 20:59:01 -0400 | 
| commit | bdf817efec1cfdd67cc6176a6664442fd98173ae (patch) | |
| tree | 93d0abe475c342b2c0cac0dfdb16e2fa018bf4e6 /Makefile | |
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 48 | 
1 files changed, 48 insertions, 0 deletions
| diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8571f86 --- /dev/null +++ b/Makefile @@ -0,0 +1,48 @@ +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, $@) + + +libs: $(LIBS) + +$(LIBS): +	ln -fs libs/$@ ./ + +figs: $(FIGS) + +$(FIGS): +	make -C figs/$@ +	for pdf in $$(find figs/$@/ -name '*.pdf'); do ln -fs "$$pdf" ./ ; done +	for png in $$(find figs/$@/ -name '*.png'); do ln -fs "$$png" ./ ; done + +clean-aux: clean-figs-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 | 
