diff options
| author | Mohit Agarwal <mohit.agarwal@sky.com> | 2025-05-26 18:45:09 +0000 |
|---|---|---|
| committer | Mohit Agarwal <mohit.agarwal@sky.com> | 2025-05-26 18:45:09 +0000 |
| commit | e7fae49d836cb37feabf44dd820a0fee2742eea6 (patch) | |
| tree | 1469197f5178d20d30f590e5fbafb5e359c233c4 /Makefile | |
Initial commit (+)
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..73f6548 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +default: target\ + target/main.pdf + +SOURCES=images/\ + papers/\ + main.tex\ + 00-titlepage.tex\ + 01-letter-ed.tex\ + 02-acknowledgements.tex\ + 90-contributors.tex +target: + mkdir target +target/main.pdf: $(SOURCES) + cp -r $^ target/ + cd target &&\ + pdflatex main.tex &&\ + pdflatex main.tex &&\ + pdflatex main.tex + +clean: + rm -rf target/ |
