1SUBDIRS = include build @EXECUTABLES@
2
3ACLOCAL_AMFLAGS = -I build/m4
4
5EXTRA_DIST = ChangeLog \
6             INSTALL \
7             INSTALL.win \
8             COPYING \
9             makefile.mgw \
10             database/buildDB.py \
11             $(DOCS) \
12             $(VCPROJS)
13
14VCPROJS = QuesoGLC.sln \
15          build/QuesoGLC.vcproj \
16          tests/test1.vcproj \
17          tests/test4.vcproj \
18          tests/test5.vcproj \
19          tests/test6.vcproj \
20          tests/test7.vcproj \
21          tests/test8.vcproj \
22          tests/test9.1.vcproj \
23          tests/test9.2.vcproj \
24          tests/test9.3.vcproj \
25          tests/test9.4.vcproj \
26          tests/test9.5.vcproj \
27          tests/test9.6.vcproj \
28          tests/test9.7.vcproj \
29          tests/test9.8.vcproj \
30          tests/test10.vcproj \
31          tests/test11.1.vcproj \
32          tests/test11.2.vcproj \
33          tests/test11.3.vcproj \
34          tests/test11.4.vcproj \
35          tests/test11.5.vcproj \
36          tests/test11.6.vcproj \
37          tests/test11.7.vcproj \
38          tests/test12.vcproj \
39          tests/testcontex.vcproj \
40          tests/testfont.vcproj \
41          tests/testmaster.vcproj \
42          tests/testrender.vcproj \
43          examples/demo.vcproj \
44          examples/glcdemo.vcproj \
45          examples/glclogo.vcproj \
46          examples/tutorial.vcproj \
47          examples/tutorial2.vcproj \
48          examples/unicode.vcproj
49
50DOCS = docs/body_comparison.eps \
51       docs/body_comparison.png \
52       docs/Doxyfile \
53       docs/glclogo.png \
54       docs/Image1.eps \
55       docs/Image1.png \
56       docs/Image2.eps \
57       docs/Image2.png \
58       docs/Image3.eps \
59       docs/Image3.png \
60       docs/Image4.eps \
61       docs/Image4.png \
62       docs/mainpage.dox \
63       docs/measure.eps \
64       docs/measure.png \
65       docs/qfooter.html \
66       docs/qheader.html \
67       docs/quesoglc.css \
68       docs/screenshot.eps \
69       docs/screenshot.png \
70       docs/title.png \
71       docs/tutorial2.eps \
72       docs/tutorial2.png \
73       docs/tutorial2_wrong.eps \
74       docs/tutorial2_wrong.png \
75       docs/tutorial.eps \
76       docs/tutorial.png
77
78pkgconfigdir = $(libdir)/pkgconfig
79pkgconfig_DATA = quesoglc.pc
80
81dist-hook:
82	mkdir -p -- $(distdir)/build/m4
83
84.PHONY: doc
85
86doc: $(DOCS)
87	cd docs && doxygen && cd ..
88