1 ## Process this file with automake to produce Makefile.in
5 SUBDIRS = . m4macros glib gobject gmodule gthread tests build po docs
7 bin_SCRIPTS = glib-gettextize
9 INCLUDES = -DG_LOG_DOMAIN=g_log_domain_glib @GLIB_DEBUG_FLAGS@ \
10 -DG_DISABLE_DEPRECATED -DGLIB_COMPILATION
25 glibconfig.h.win32.in \
26 msvc_recommended_pragmas.h \
33 glib-2.0-uninstalled.pc.in \
34 gobject-2.0-uninstalled.pc.in \
35 gmodule-2.0-uninstalled.pc.in \
36 gthread-2.0-uninstalled.pc.in \
39 # These may be in the builddir too
47 configexecincludedir = $(libdir)/glib-2.0/include
48 #configexecinclude_DATA = glibconfig.h
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
57 rm -f $(DESTDIR)$(configexecincludedir)/glibconfig.h
59 CONFIGURE_DEPENDENCIES = acglib.m4
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
69 pkgconfigdir = $(libdir)/pkgconfig
70 pkgconfig_DATA = glib-2.0.pc gobject-2.0.pc gmodule-2.0.pc gthread-2.0.pc
72 $(pkgconfig_DATA): config.status
74 # build documentation when doing distcheck
75 DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
77 DISTCLEANFILES = glibconfig-sysdefs.h glibconfig.h stamp-gc-h
80 if test $(srcdir) = .; then :; else \
81 rm -f $(BUILT_EXTRA_DIST); \
84 .PHONY: files release sanity snapshot
87 @files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
93 cd docs && make glib.html
97 ./sanity_check $(VERSION)
100 $(MAKE) dist distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
103 $(MAKE) distcheck distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
105 dist-hook: $(BUILT_EXTRA_DIST)
106 files='$(BUILT_EXTRA_DIST)'; \
107 for f in $$files; do \
108 if test -f $$f; then d=.; else d=$(srcdir); fi; \
109 rm -f $(distdir)/$$f && cp $$d/$$f $(distdir) || exit 1; done