build: Add --disable-modular-tests build option
[platform/upstream/glib.git] / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2 include $(top_srcdir)/Makefile.decl
3
4 # http://people.gnome.org/~walters/docs/build-api.txt
5 .buildapi-allow-builddir:
6
7 ACLOCAL_AMFLAGS = -I m4macros ${ACLOCAL_FLAGS}
8
9 SUBDIRS = . m4macros glib gmodule gthread gobject gio po docs
10 DIST_SUBDIRS = $(SUBDIRS) build
11 if BUILD_MODULAR_TESTS
12 SUBDIRS += tests 
13 else
14 DIST_SUBDIRS += tests
15 endif
16
17 bin_SCRIPTS = glib-gettextize
18
19 AM_CPPFLAGS =                                   \
20         -DG_LOG_DOMAIN=g_log_domain_glib        \
21         @GLIB_DEBUG_FLAGS@                      \
22         -DG_DISABLE_DEPRECATED                  \
23         -DGLIB_COMPILATION
24
25 EXTRA_DIST +=                   \
26         ChangeLog.pre-2-20      \
27         ChangeLog.pre-2-18      \
28         ChangeLog.pre-2-16      \
29         ChangeLog.pre-2-14      \
30         ChangeLog.pre-2-12      \
31         ChangeLog.pre-2-10      \
32         ChangeLog.pre-2-8       \
33         ChangeLog.pre-2-6       \
34         ChangeLog.pre-2-4       \
35         ChangeLog.pre-2-2       \
36         ChangeLog.pre-2-0       \
37         ChangeLog.pre-1-2       \
38         glib-zip.in             \
39         NEWS.pre-1-3            \
40         acglib.m4               \
41         sanity_check            \
42         README.commits          \
43         README.in               \
44         INSTALL.in              \
45         README.win32            \
46         HACKING                 \
47         autogen.sh              \
48         Makefile.decl           \
49         mkinstalldirs           \
50         makefile.msc            \
51         msvc_recommended_pragmas.h \
52         config.h.win32.in       \
53         po/po2tbl.sed.in        \
54         glib-2.0.pc.in          \
55         gobject-2.0.pc.in       \
56         gmodule-2.0.pc.in       \
57         gmodule-export-2.0.pc.in        \
58         gmodule-no-export-2.0.pc.in     \
59         gthread-2.0.pc.in       \
60         gio-2.0.pc.in           \
61         gio-unix-2.0.pc.in      \
62         gio-windows-2.0.pc.in
63
64
65 # These may be in the builddir too
66 BUILT_EXTRA_DIST =              \
67         README                  \
68         INSTALL                 \
69         ChangeLog               \
70         config.h.win32          \
71         gtk-doc.make
72
73 CONFIGURE_DEPENDENCIES = acglib.m4
74
75 ChangeLog:
76         $(AM_V_GEN) if test -d "$(srcdir)/.git"; then \
77           (GIT_DIR=$(top_srcdir)/.git ./missing --run git log GLIB_2_20_0^^.. --stat) | fmt --split-only > $@.tmp \
78           && mv -f $@.tmp $@ \
79           || ($(RM) $@.tmp; \
80               echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
81               (test -f $@ || echo git-log is required to generate this file >> $@)); \
82         else \
83           test -f $@ || \
84           (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
85           echo A git checkout and git-log is required to generate this file >> $@); \
86         fi
87
88 pkgconfigdir = $(libdir)/pkgconfig
89 pkgconfig_DATA = glib-2.0.pc gobject-2.0.pc gmodule-2.0.pc gmodule-export-2.0.pc gmodule-no-export-2.0.pc gthread-2.0.pc gio-2.0.pc
90
91 if OS_UNIX
92 pkgconfig_DATA += gio-unix-2.0.pc
93 endif
94
95 if OS_WIN32
96 pkgconfig_DATA += gio-windows-2.0.pc
97 endif
98
99 $(pkgconfig_DATA): config.status
100
101 # install mkinstalldirs for glib-gettextize's benefit
102 gettextdir = $(datadir)/glib-2.0/gettext
103 gettext_SCRIPTS = mkinstalldirs
104
105 # build documentation when doing distcheck
106 DISTCHECK_CONFIGURE_FLAGS = --enable-debug --enable-gtk-doc --enable-man --disable-maintainer-mode
107
108 DISTCLEANFILES = config.lt
109
110 distclean-local: lcov-clean
111         if test $(srcdir) = .; then :; else \
112             rm -f $(BUILT_EXTRA_DIST); \
113         fi
114
115 .PHONY: files release sanity snapshot ChangeLog
116
117 files:
118         @files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
119           echo $$p; \
120         done
121
122 release:
123         rm -rf .deps */.deps
124         cd docs && make glib.html
125         $(MAKE) distcheck
126
127 sanity:
128         ./sanity_check $(VERSION)
129
130 snapshot:
131         $(MAKE) dist distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
132
133 snapcheck:
134         $(MAKE) distcheck distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
135
136 dist-hook: $(BUILT_EXTRA_DIST)
137         files='$(BUILT_EXTRA_DIST)'; \
138         for f in $$files; do \
139           if test -f $$f; then d=.; else d=$(srcdir); fi; \
140           rm -f $(distdir)/$$f && cp $$d/$$f $(distdir) || exit 1; done