diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2022-02-26 09:14:14 +0100 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2022-02-26 09:14:14 +0100 |
commit | 11c94692a0e4936667ed1a646b3d7bcdb26ebdee (patch) | |
tree | 12bb205d9d069b0a37e3f0d8ce7b650967f5916f /vorlesungsnotizen/bin/Makefile | |
parent | changes (diff) | |
download | SeminarSpezielleFunktionen-11c94692a0e4936667ed1a646b3d7bcdb26ebdee.tar.gz SeminarSpezielleFunktionen-11c94692a0e4936667ed1a646b3d7bcdb26ebdee.zip |
add page numbering program
Diffstat (limited to 'vorlesungsnotizen/bin/Makefile')
-rw-r--r-- | vorlesungsnotizen/bin/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vorlesungsnotizen/bin/Makefile b/vorlesungsnotizen/bin/Makefile new file mode 100644 index 0000000..e3feff8 --- /dev/null +++ b/vorlesungsnotizen/bin/Makefile @@ -0,0 +1,12 @@ +# +# Makefile to build numbering script +# +# (c) 2022 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule +# +numberpages: numberpages.cpp + c++ -std=c++11 -g -Wall -o numberpages numberpages.cpp + +test: numberpages + ./numberpages --debug --section "Komplexe Funktionentheorie" \ + --force \ + "../MSE/1 - Komplexe Funktionen.pdf" blubb.pdf |