blob: 03315682ef77b029c026520cb7b80de61b552ce9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
.SUFFIXES: .lou .ps .pdf
.lou.ps:
lout -r3 $< -o $@
.ps.pdf:
ps2pdf -sPAPERSIZE=a4 $<
The_Other_Side_of_the_Hill.pdf: The_Other_Side_of_the_Hill.lou \
sequence.lou \
procedures.lou \
definitions.lou \
cards.lou \
intrications.lou \
images.lou
build: The_Other_Side_of_the_Hill.pdf
clean:
-@ rm The_Other_Side_of_the_Hill.ps The_Other_Side_of_the_Hill.pdf *.li *.ld
|