1 ## Process this file with automake to produce Makefile.in
2 include $(top_srcdir)/Makefile.decl
6 SUBDIRS = . m4macros glib gmodule gthread gobject gio tests po docs
7 DIST_SUBDIRS = $(SUBDIRS) build
9 bin_SCRIPTS = glib-gettextize
12 -DG_LOG_DOMAIN=g_log_domain_glib \
14 -DG_DISABLE_DEPRECATED \
44 glibconfig.h.win32.in \
45 msvc_recommended_pragmas.h \
51 gmodule-export-2.0.pc.in \
52 gmodule-no-export-2.0.pc.in \
56 gio-windows-2.0.pc.in \
57 glib-2.0-uninstalled.pc.in \
58 gobject-2.0-uninstalled.pc.in \
59 gmodule-2.0-uninstalled.pc.in \
60 gthread-2.0-uninstalled.pc.in \
61 gmodule-no-export-2.0-uninstalled.pc.in \
62 gio-2.0-uninstalled.pc.in \
63 gio-unix-2.0-uninstalled.pc.in
66 # These may be in the builddir too
75 configexecincludedir = $(libdir)/glib-2.0/include
76 configexecinclude_DATA = glibconfig.h
79 rm -f $(DESTDIR)$(configexecincludedir)/glibconfig.h
81 CONFIGURE_DEPENDENCIES = acglib.m4
83 BUILT_SOURCES = stamp-gc-h #note: not glibconfig.h
84 glibconfig.h: stamp-gc-h
85 $(AM_V_GEN) if test -f glibconfig.h; then :; \
86 else rm -f stamp-gc-h; $(MAKE) stamp-gc-h; fi
87 stamp-gc-h: config.status
88 cd $(top_builddir) && $(SHELL) ./config.status glibconfig.h
89 echo timestamp > stamp-gc-h
92 $(AM_V_GEN) if test -d "$(srcdir)/.git"; then \
93 (GIT_DIR=$(top_srcdir)/.git ./missing --run git log GLIB_2_20_0^^.. --stat) | fmt --split-only > $@.tmp \
96 echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
97 (test -f $@ || echo git-log is required to generate this file >> $@)); \
100 (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
101 echo A git checkout and git-log is required to generate this file >> $@); \
104 pkgconfigdir = $(libdir)/pkgconfig
105 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
108 pkgconfig_DATA += gio-unix-2.0.pc
112 pkgconfig_DATA += gio-windows-2.0.pc
115 $(pkgconfig_DATA): config.status
117 # install mkinstalldirs for glib-gettextize's benefit
118 gettextdir = $(datadir)/glib-2.0/gettext
119 gettext_SCRIPTS = mkinstalldirs
121 # build documentation when doing distcheck
122 DISTCHECK_CONFIGURE_FLAGS = --enable-debug --enable-gtk-doc --enable-man
124 DISTCLEANFILES = glibconfig-sysdefs.h glibconfig.h stamp-gc-h config.lt
127 if test $(srcdir) = .; then :; else \
128 rm -f $(BUILT_EXTRA_DIST); \
131 .PHONY: files release sanity snapshot ChangeLog
134 @files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
140 cd docs && make glib.html
144 ./sanity_check $(VERSION)
147 $(MAKE) dist distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
150 $(MAKE) distcheck distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
152 dist-hook: $(BUILT_EXTRA_DIST)
153 files='$(BUILT_EXTRA_DIST)'; \
154 for f in $$files; do \
155 if test -f $$f; then d=.; else d=$(srcdir); fi; \
156 rm -f $(distdir)/$$f && cp $$d/$$f $(distdir) || exit 1; done