diff options
author | Rob Taylor <rob.taylor@collabora.co.uk> | 2006-09-24 14:32:52 +0100 |
---|---|---|
committer | Rob Taylor <rob.taylor@collabora.co.uk> | 2006-09-24 14:32:52 +0100 |
commit | 4d6aa726814295cfabab95a51d2e320d02b72dde (patch) | |
tree | bcfba947e997bc98241f9213570b679be488cc4a /Makefile.am | |
parent | 1571d556aa5f087e52074e5fd7c5e5c29667c551 (diff) |
Add m4 directory
Add missing changes from last commit.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index 17001c8..7b5a434 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,7 @@ GLIB_PC=dbus-glib-1.pc SUBDIRS=dbus tools test doc -DIST_SUBDIRS=dbus tools test doc +DIST_SUBDIRS=dbus tools test doc m4 pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = $(GLIB_PC) @@ -22,7 +22,7 @@ DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc EXTRA_DIST += ChangeLog ChangeLog: $(srcdir)/ChangeLog -$(srcdir)/ChangeLog: +$(srcdir)/ChangeLog: FORCE @if test -d "$(srcdir)/.git"; then \ (cd "$(srcdir)" && \ ./missing --run git-log --stat) | fmt --split-only > $@.tmp \ @@ -47,7 +47,7 @@ clean-bbg: GCOV_DIRS=$(GLIB_SUBDIR) -coverage-report.txt: +coverage-report.txt: FORCE BBG_FILES=`find $(GCOV_DIRS) -name "*.bbg" -o -name "*.gcno"` ; \ C_FILES= ; \ for F in $$BBG_FILES ; do \ @@ -76,4 +76,5 @@ check-coverage: endif -.PHONY: ChangeLog $(srcdir)/ChangeLog coverage-report.txt +FORCE: + |