Clean autotools config a bit
[platform/upstream/glib.git] / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2 include $(top_srcdir)/Makefile.decl
3
4 ACLOCAL_AMFLAGS = -I m4macros ${ACLOCAL_FLAGS}
5
6 SUBDIRS = . m4macros glib gmodule gthread gobject gio tests po docs
7 DIST_SUBDIRS = $(SUBDIRS) build
8
9 bin_SCRIPTS = glib-gettextize
10
11 AM_CPPFLAGS =                                   \
12         -DG_LOG_DOMAIN=g_log_domain_glib        \
13         @GLIB_DEBUG_FLAGS@                      \
14         -DG_DISABLE_DEPRECATED                  \
15         -DGLIB_COMPILATION
16
17 EXTRA_DIST +=                   \
18         ChangeLog.pre-2-20      \
19         ChangeLog.pre-2-18      \
20         ChangeLog.pre-2-16      \
21         ChangeLog.pre-2-14      \
22         ChangeLog.pre-2-12      \
23         ChangeLog.pre-2-10      \
24         ChangeLog.pre-2-8       \
25         ChangeLog.pre-2-6       \
26         ChangeLog.pre-2-4       \
27         ChangeLog.pre-2-2       \
28         ChangeLog.pre-2-0       \
29         ChangeLog.pre-1-2       \
30         glib-zip.in             \
31         NEWS.pre-1-3            \
32         acglib.m4               \
33         sanity_check            \
34         README.commits          \
35         README.in               \
36         INSTALL.in              \
37         README.win32            \
38         HACKING                 \
39         MAINTAINERS             \
40         autogen.sh              \
41         Makefile.decl           \
42         mkinstalldirs           \
43         makefile.msc            \
44         msvc_recommended_pragmas.h \
45         config.h.win32.in       \
46         po/po2tbl.sed.in        \
47         glib-2.0.pc.in          \
48         gobject-2.0.pc.in       \
49         gmodule-2.0.pc.in       \
50         gmodule-export-2.0.pc.in        \
51         gmodule-no-export-2.0.pc.in     \
52         gthread-2.0.pc.in       \
53         gio-2.0.pc.in           \
54         gio-unix-2.0.pc.in      \
55         gio-windows-2.0.pc.in   \
56         glib-2.0-uninstalled.pc.in      \
57         gobject-2.0-uninstalled.pc.in   \
58         gmodule-2.0-uninstalled.pc.in   \
59         gthread-2.0-uninstalled.pc.in   \
60         gmodule-no-export-2.0-uninstalled.pc.in \
61         gio-2.0-uninstalled.pc.in               \
62         gio-unix-2.0-uninstalled.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
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