File: Makefile

package info (click to toggle)
wxglade 0.4.1-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,684 kB
  • ctags: 2,658
  • sloc: python: 22,331; xml: 940; makefile: 98; sh: 2
file content (15 lines) | stat: -rw-r--r-- 275 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all: pdf html

BITMAPS=src/main_window.png src/tree_window.png

pdf: src/manual.xml $(BITMAPS)
	xmlto pdf -o pdf src/manual.xml

html: src/manual.xml $(BITMAPS)
	cp src/*.png html/
	xmlto xhtml -o html src/manual.xml

clean:
	rm html/*.html
	rm html/*.png
	rm pdf/manual.pdf