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