-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.am
90 lines (71 loc) · 1.66 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
############################################################################
## SoGtk/Makefile.am
## $Id$
include src/Inventor/Gtk/common/Makefile.common
############################################################################
# Automake conditional stuff
if BUILD_LIBRARY
# Material editor(s) not part of the public API yet, so there's
# no point yet in installing the material data.
#LIBDIRS = data src
LIBDIRS = src
if BUILD_INTL
INTLDIRS = po intl
else
INTLDIRS =
endif
else
LIBDIRS =
INTLDIRS =
endif
if BUILD_HTMLPAGES
HTMLDIR = html
else
HTMLDIR =
endif
if BUILD_TESTS
TESTDIR = test-code
else
TESTDIR =
endif
SUBDIRS = . $(LIBDIRS) man $(HTMLDIR) $(INTLDIRS) $(TESTDIR)
############################################################################
BUILT_SOURCES = \
$(SoGuiAllBuiltFiles)
CLEANFILES = \
$(SoGui_BuiltMetaFiles)
DISTCLEANFILES = \
$(SoGui_BuiltFiles) \
$(SoGui_BuiltMetaFiles) \
build/Makefile \
build/so@[email protected] \
intl/Makefile \
intl/po2tbl.sed \
so@gui@-@[email protected] \
so@gui@-config \
po/POTFILES \
po/Makefile.in \
po/Makefile
EXTRA_DIST = \
build/Makefile.am \
build/Makefile.in \
build/README \
build/sogtk.spec.in \
cfg/sogtk.m4 \
po/ChangeLog \
po/Makefile.in.in \
po/POTFILES.in \
po/de.po \
$(SoGuiCommonDistFiles)
if BUILD_LIBRARY
bin_SCRIPTS = so@gui@-config
m4datadir = $(datadir)/aclocal
# Don't replace "gtk" with "@gui@" here, as it will pøkk up
# for ``make dist''.
dist_m4data_DATA = cfg/sogtk.m4
cfgdatadir = $(datadir)/Coin/conf
cfgdata_DATA = so@gui@-@[email protected]
endif
all-local: built-sources
built-sources: $(BUILT_SOURCES)
############################################################################