bilder fuer teilaufgabe1 modizifert (Interval hervorgehobe) und .sty Datei angepasst...
[dide_16.git] / bsp2 / Protokolle / Makefile
1 #!/bin/bash
2
3
4 PROJECT = DigitalDesign_prot
5
6 #------------------------------------------------------------------------------
7 protocol:
8 #------------------------------------------------------------------------------
9         latex $(PROJECT)
10         latex $(PROJECT)
11         dvips -o $(PROJECT).ps $(PROJECT).dvi
12         ps2pdf $(PROJECT).ps $(PROJECT).pdf
13
14
15 #------------------------------------------------------------------------------
16 print: protocol
17 #------------------------------------------------------------------------------
18         psselect -p1 $(PROJECT).ps | lpr
19
20
21 #------------------------------------------------------------------------------
22 help:
23 #------------------------------------------------------------------------------
24         @echo -e "\n>>> the following targets are available <<<"
25         @echo -e "\t(default) \t generate .dvi, .ps, and .pdf files"
26         @echo -e "\tprotocol \t generate .dvi, .ps, and .pdf files"
27         @echo -e "\tprint \t\t print the title page (you need to sign it!)"
28         @echo -e "\n\thelp \t\t list this text"
29         @echo -e "\tclean \t\t remove temporary files"
30
31 #------------------------------------------------------------------------------
32 clean:
33 #------------------------------------------------------------------------------
34         rm *.aux *.log *.dvi *.toc *.out
35