summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9b560150bb6f04cbbabbf02ca62b01ebe8a3de50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
DEBUG:=yes

DIAs=$(wildcard image/*.dia)
SVGs=$(DIAs:.dia=.svg)
PNGs=$(SVGs:.svg=.png)
EPSs=$(DIAs:.dia=.eps)

.PHONY: all clean
all: projekt_doku.pdf presentation.html

#.SUFFIXES: .asciidoc .html
#presentation.html: presentation.asciidoc
#	asciidoc --out-file=$@.tmp --backend=slidy $<
#	sed -f fix-css.sed $@.tmp > $@
#	rm $@.tmp
#
#.asciidoc.html:
#	asciidoc --out-file=$@ --backend=html $<
#
#.SUFFIXES: .asciidoc .tex
#.asciidoc.tex:
#	asciidoc --backend=latex $<

presentation.html: presentation.txt $(SVGs) $(PNGs)
	asciidoc --out-file=$@ --backend=slidy $<
	sed -i -f fix-css.sed $@

projekt_doku.pdf: projekt_doku.asciidoc thesis.xsl thesis.sty $(SVGs) $(EPSs)
	a2x -f pdf $<

.PHONY: pluggit
pluggit:
	rm -f pluggit/pluggit
	$(MAKE) -C directfb-voodoo/ -f makefile.voodoo DEBUG=$(DEBUG) package
	$(MAKE) -C pluggit/ -f makefile.voodoo DIRECTFB_VOODOO=../directfb-voodoo/DirectFB_Voodoo all

.SUFFIXES: .dia .svg
.dia.svg:
	@dia --export=$@ --filter=svg $<
	sed -i 's~xlink:href="[^"]*/\([^"/]*\)"~xlink:href="\1"~' $@

.SUFFIXES: .dia .eps
.dia.eps:
	@dia --export=$@ --filter=eps $<

.SUFFIXES: .svg .png
.svg.png:
	rsvg-convert -f png $< > $@

clean:
	rm -f projekt_doku.pdf presentation.html document.pdf
	rm -f $(SVGs) $(PNGs) $(EPSs)
	$(MAKE) -C pluggit/ -f makefile.voodoo clean
	rm -f pluggit/src/classes.cpp
	$(MAKE) -C directfb-voodoo/ -f makefile.voodoo clean
	rm -rf directfb-voodoo/DirectFB_Voodoo*