1 ## Process this file with automake to produce Makefile.in
2 include $(top_srcdir)/glib.mk
4 # http://people.gnome.org/~walters/docs/build-api.txt
5 .buildapi-allow-builddir:
7 ACLOCAL_AMFLAGS = -I m4macros ${ACLOCAL_FLAGS}
9 SUBDIRS = . m4macros glib gmodule gthread gobject gio po docs tests subprojects
10 DIST_SUBDIRS = $(SUBDIRS) build
12 bin_SCRIPTS = glib-gettextize
15 TESTS += check-abis.sh
19 -DG_LOG_DOMAIN=g_log_domain_glib \
21 -DG_DISABLE_DEPRECATED \
51 msvc_recommended_pragmas.h \
56 gmodule-export-2.0.pc.in \
57 gmodule-no-export-2.0.pc.in \
61 gio-windows-2.0.pc.in \
69 docs/reference/gio/meson.build \
70 docs/reference/gio/xml/gtkdocentities.ent.in \
71 docs/reference/gio/xml/meson.build \
72 docs/reference/glib/meson.build \
73 docs/reference/glib/xml/gtkdocentities.ent.in \
74 docs/reference/glib/xml/meson.build \
75 docs/reference/gobject/meson.build \
76 docs/reference/gobject/xml/gtkdocentities.ent.in \
77 docs/reference/gobject/xml/meson.build \
79 gio/fam/gfamfilemonitor.map \
81 gio/gdbus-2.0/codegen/meson.build \
82 gio/gio-querymodules-wrapper.py \
83 gio/inotify/meson.build \
84 gio/kqueue/meson.build \
86 gio/tests/meson.build \
87 gio/tests/gengiotypefuncs.py \
88 gio/tests/modules/meson.build \
89 gio/tests/gdbus-object-manager-example/meson.build \
90 gio/tests/de/LC_MESSAGES/meson.build \
91 gio/win32/meson.build \
92 gio/xdgmime/meson.build \
93 glib/glibconfig.h.in \
94 glib/gnulib/meson.build \
95 glib/libcharset/meson.build \
97 glib/pcre/meson.build \
98 glib/tests/meson.build \
100 gobject/meson.build \
101 gobject/tests/meson.build \
102 gthread/meson.build \
104 tests/refcount/meson.build \
106 tests/gobject/meson.build \
109 EXTRA_DIST += $(meson_build_files)
111 # These may be in the builddir too
112 BUILT_EXTRA_DIST += \
117 CONFIGURE_DEPENDENCIES = acglib.m4
120 $(AM_V_GEN) if test -d "$(srcdir)/.git"; then \
121 (GIT_DIR=$(top_srcdir)/.git ./missing --run git log GLIB_2_20_0^^.. --stat) | fmt --split-only > $@.tmp \
124 echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
125 (test -f $@ || echo git-log is required to generate this file >> $@)); \
128 (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
129 echo A git checkout and git-log is required to generate this file >> $@); \
132 pkgconfigdir = $(libdir)/pkgconfig
133 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
136 pkgconfig_DATA += gio-unix-2.0.pc
140 pkgconfig_DATA += gio-windows-2.0.pc
143 $(pkgconfig_DATA): config.status
145 # Install Valgrind suppression file
146 valgrinddir = $(datadir)/glib-2.0/valgrind
147 dist_valgrind_DATA = glib.supp
149 # build documentation when doing distcheck
150 AM_DISTCHECK_CONFIGURE_FLAGS = --enable-debug --enable-gtk-doc --enable-man --disable-maintainer-mode
152 DISTCLEANFILES += config.lt
154 distclean-local: lcov-clean
155 if test $(srcdir) = .; then :; else \
156 rm -f $(BUILT_EXTRA_DIST); \
159 .PHONY: files release sanity snapshot ChangeLog
162 @files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
168 cd docs && make glib.html
172 ./sanity_check $(VERSION)
175 $(MAKE) dist distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
178 $(MAKE) distcheck distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
180 dist-hook: $(BUILT_EXTRA_DIST)
181 files='$(BUILT_EXTRA_DIST)'; \
182 for f in $$files; do \
183 if test -f $$f; then d=.; else d=$(srcdir); fi; \
184 rm -f $(distdir)/$$f && cp $$d/$$f $(distdir) || exit 1; done