-
Notifications
You must be signed in to change notification settings - Fork 14
/
Makefile.am
62 lines (51 loc) · 1.28 KB
/
Makefile.am
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
## Process this file with automake to generate Makefile.in.
if BUILD_HTMLPAGES
HTMLDIR = html
else
HTMLDIR =
endif
DXF2VRMLDIR = dxf2vrml
DXFSPHEREDIR = dxfsphere
if BUILD_WITH_MSVC
EXAMPLEPROGDIRS =
else
EXAMPLEPROGDIRS = $(DXF2VRMLDIR) $(DXFSPHEREDIR)
endif
if BUILD_LIBRARY
SRCDIRS = src $(EXAMPLEPROGDIRS)
else
SRCDIRS =
endif
SUBDIRS = $(HTMLDIR) $(SRCDIRS)
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA= dime.pc
EXTRA_DIST = \
dime.pc.in \
cfg/errors.txt \
cfg/gendsp.pl.in \
cfg/ltconfig \
cfg/wrapmsvc.exe \
cfg/csubst.exe \
cfg/doxy4win.pl \
docs/dime.doxygen.in \
docs/doxygen/header.html \
docs/doxygen/footer.html \
docs/doxygen/stylesheet.css \
docs/doxygen/Coin_logo.png
DISTCLEANFILES = \
dime.pc \
docs/dime.doxygen
docs/dime.doxygen: $(srcdir)/docs/dime.doxygen.in config.status
@if test -d docs; then :; else mkdir docs; fi
@./config.status --file=$@:$@.in
@$(srcdir)/cfg/doxy4win.pl docs/dime.doxygen
doxygen-doc: built-sources
if test x"@DIME_DOC_HTML@" = x"YES"; then \
mkdir -p "@dime_html_dir@"; \
else :; fi
@sim_ac_doxygen_exe@ $(top_builddir)/docs/dime.doxygen
doxygen-docs: built-sources
if test x"@DIME_DOC_HTML@" = x"YES"; then \
mkdir -p "@dime_html_dir@"; \
else :; fi
@sim_ac_doxygen_exe@ $(top_builddir)/docs/dime.doxygen