7d1831b4cc22d275bd72e4307b0afceee00a22b1
[platform/upstream/glib.git] / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 AUTOMAKE_OPTIONS = 1.7
4
5 SUBDIRS = . m4macros glib gobject gmodule gthread tests build po docs
6
7 bin_SCRIPTS = glib-gettextize
8
9 INCLUDES = -DG_LOG_DOMAIN=g_log_domain_glib @GLIB_DEBUG_FLAGS@ \
10         -DG_DISABLE_DEPRECATED -DGLIB_COMPILATION
11
12 EXTRA_DIST =                    \
13         ChangeLog.pre-2-2       \
14         ChangeLog.pre-2-0       \
15         ChangeLog.pre-1-2       \
16         glib-zip.in             \
17         NEWS.pre-1-3            \
18         acglib.m4               \
19         sanity_check            \
20         README.in               \
21         INSTALL.in              \
22         README.win32            \
23         makefile.msc            \
24         glibconfig.h.win32.in   \
25         msvc_recommended_pragmas.h \
26         config.h.win32.in       \
27         po/po2tbl.sed.in        \
28         glib-2.0.pc.in          \
29         gobject-2.0.pc.in       \
30         gmodule-2.0.pc.in       \
31         gmodule-export-2.0.pc.in        \
32         gmodule-no-export-2.0.pc.in     \
33         gthread-2.0.pc.in       \
34         glib-2.0-uninstalled.pc.in      \
35         gobject-2.0-uninstalled.pc.in   \
36         gmodule-2.0-uninstalled.pc.in   \
37         gthread-2.0-uninstalled.pc.in
38
39 # These may be in the builddir too
40 BUILT_EXTRA_DIST =              \
41         README                  \
42         INSTALL                 \
43         glibconfig.h.win32      \
44         config.h.win32          \
45         gtk-doc.make
46
47 configexecincludedir = $(libdir)/glib-2.0/include
48 #configexecinclude_DATA = glibconfig.h
49
50 install-exec-local: glibconfig.h
51         $(mkinstalldirs) $(DESTDIR)$(configexecincludedir)
52         file=$(DESTDIR)$(configexecincludedir)/glibconfig.h; \
53         if test -r $$file && cmp -s glibconfig.h $$file; then :; \
54         else $(INSTALL_DATA) glibconfig.h $$file; fi
55
56 uninstall-local:
57         rm -f $(DESTDIR)$(configexecincludedir)/glibconfig.h
58
59 CONFIGURE_DEPENDENCIES = acglib.m4
60
61 BUILT_SOURCES = stamp-gc-h #note: not glibconfig.h
62 glibconfig.h: stamp-gc-h
63         @if test -f glibconfig.h; then :; \
64         else rm -f stamp-gc-h; $(MAKE) stamp-gc-h; fi
65 stamp-gc-h: config.status
66         cd $(top_builddir) && $(SHELL) ./config.status glibconfig.h
67         echo timestamp > stamp-gc-h
68
69 pkgconfigdir = $(libdir)/pkgconfig
70 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
71
72 $(pkgconfig_DATA): config.status
73
74 # install mkinstalldirs for glib-gettextize's benefit
75 gettextdir = $(datadir)/glib-2.0/gettext
76 gettext_SCRIPTS = mkinstalldirs
77
78 # build documentation when doing distcheck
79 DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
80
81 DISTCLEANFILES = glibconfig-sysdefs.h glibconfig.h stamp-gc-h
82
83 distclean-local:
84         if test $(srcdir) = .; then :; else \
85             rm -f $(BUILT_EXTRA_DIST); \
86         fi
87
88 .PHONY: files release sanity snapshot
89
90 files:
91         @files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
92           echo $$p; \
93         done
94
95 release:
96         rm -rf .deps */.deps
97         cd docs && make glib.html
98         $(MAKE) distcheck
99
100 sanity:
101         ./sanity_check $(VERSION)
102
103 snapshot:
104         $(MAKE) dist distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
105
106 snapcheck:
107         $(MAKE) distcheck distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
108
109 dist-hook: $(BUILT_EXTRA_DIST)
110         files='$(BUILT_EXTRA_DIST)'; \
111         for f in $$files; do \
112           if test -f $$f; then d=.; else d=$(srcdir); fi; \
113           rm -f $(distdir)/$$f && cp $$d/$$f $(distdir) || exit 1; done