Initial commit

This commit is contained in:
2024-02-05 13:44:30 -05:00
commit baec072d2a
40 changed files with 4209 additions and 0 deletions

31
figs/GFc.fig/Makefile Normal file
View File

@@ -0,0 +1,31 @@
PROJECTNAME=GFc
LIBS=$(notdir $(wildcard libs/*))
PDFS=$(addsuffix .pdf, $(PROJECTNAME))
all: $(PDFS)
$(PDFS): $(LIBS) GFc.tikz.tex
pdflatex -jobname $(basename $@) -file-line-error $(patsubst %.pdf, %.tikz.tex, $@)
GFc.tikz.tex:
python3 GFc_gen.py > GFc.tikz.tex
install: $(PDFS)
cp $^ $(INSTALLDIR)/
$(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)
rm -f GFc.tikz.tex
clean: clean-libs clean-aux clean-tex