File: Makefile.am

package info (click to toggle)
quesoglc 0.7.2-4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,112 kB
  • ctags: 3,298
  • sloc: ansic: 14,621; sh: 9,718; makefile: 332; python: 50
file content (83 lines) | stat: -rw-r--r-- 2,207 bytes parent folder | download | duplicates (4)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
SUBDIRS = include build @EXECUTABLES@

ACLOCAL_AMFLAGS = -I build/m4

EXTRA_DIST = ChangeLog \
             INSTALL \
             INSTALL.win \
             COPYING \
             makefile.mgw \
             database/buildDB.py \
             $(DOCS) \
             $(VCPROJS)

VCPROJS = QuesoGLC.sln \
          build/QuesoGLC.vcproj \
          tests/test1.vcproj \
          tests/test4.vcproj \
          tests/test5.vcproj \
          tests/test6.vcproj \
          tests/test7.vcproj \
          tests/test8.vcproj \
          tests/test9.1.vcproj \
          tests/test9.2.vcproj \
          tests/test9.3.vcproj \
          tests/test9.4.vcproj \
          tests/test9.5.vcproj \
          tests/test9.6.vcproj \
          tests/test9.7.vcproj \
          tests/test9.8.vcproj \
          tests/test10.vcproj \
          tests/test11.1.vcproj \
          tests/test11.2.vcproj \
          tests/test11.3.vcproj \
          tests/test11.4.vcproj \
          tests/test11.5.vcproj \
          tests/test11.6.vcproj \
          tests/test11.7.vcproj \
          tests/test12.vcproj \
          tests/testcontex.vcproj \
          tests/testfont.vcproj \
          tests/testmaster.vcproj \
          tests/testrender.vcproj \
          examples/tutorial.vcproj \
          examples/tutorial2.vcproj

DOCS = docs/body_comparison.eps \
       docs/body_comparison.png \
       docs/Doxyfile \
       docs/glclogo.png \
       docs/Image1.eps \
       docs/Image1.png \
       docs/Image2.eps \
       docs/Image2.png \
       docs/Image3.eps \
       docs/Image3.png \
       docs/Image4.eps \
       docs/Image4.png \
       docs/mainpage.dox \
       docs/measure.eps \
       docs/measure.png \
       docs/qfooter.html \
       docs/qheader.html \
       docs/quesoglc.css \
       docs/screenshot.eps \
       docs/screenshot.png \
       docs/title.png \
       docs/tutorial2.eps \
       docs/tutorial2.png \
       docs/tutorial2_wrong.eps \
       docs/tutorial2_wrong.png \
       docs/tutorial.eps \
       docs/tutorial.png

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = quesoglc.pc

dist-hook:
	mkdir -p -- $(distdir)/build/m4

.PHONY: doc

doc: $(DOCS)
	cd docs && doxygen && cd ..