diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-08-05 02:38:16 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-08-05 02:38:16 +0200 |
commit | 2196f2c81494f351b83041b3ed36cd11fed73509 (patch) | |
tree | ecf01b48a21e40d638ddbedd39fe372d3f549cb9 /docs/Simple/Makefile | |
parent | c8b2a4c63064c0096cabc6181974c3f0b46dcafb (diff) | |
download | refcat-2196f2c81494f351b83041b3ed36cd11fed73509.tar.gz refcat-2196f2c81494f351b83041b3ed36cd11fed73509.zip |
wip: simple template
Diffstat (limited to 'docs/Simple/Makefile')
-rw-r--r-- | docs/Simple/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/Simple/Makefile b/docs/Simple/Makefile new file mode 100644 index 0000000..e55adc9 --- /dev/null +++ b/docs/Simple/Makefile @@ -0,0 +1,15 @@ +main.pdf: main.tex + pdflatex main.tex + bibtex main + pdflatex main.tex + + +.PHONY: clean +clean: + rm -f main.pdf + rm -f main.aux + rm -f main.log + rm -f main.bbl + rm -f main.blg + rm -f main.out + |