summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2015-10-31 00:53:31 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2015-10-31 00:53:31 +0800
commit60fcbef051e30acb8ab766299c27eb2fe7063d33 (patch)
treea40a4341bdc9a344258668c9639fd2651c3366fa
parent2424407fe4e81feb6738533038d186949801c92c (diff)
downloadlibcroco-60fcbef051e30acb8ab766299c27eb2fe7063d33.tar.gz
build: Ensure croco[.vs10].headers is removed
croco[.vs10].headers are intermediate files that is generated during 'make dist' that outght to be removed upon the completion of 'make dist', so ensure that it is so.
-rw-r--r--build/win32/vs10/Makefile.am6
-rw-r--r--build/win32/vs9/Makefile.am6
2 files changed, 6 insertions, 6 deletions
diff --git a/build/win32/vs10/Makefile.am b/build/win32/vs10/Makefile.am
index 42c87ba..a102242 100644
--- a/build/win32/vs10/Makefile.am
+++ b/build/win32/vs10/Makefile.am
@@ -35,9 +35,9 @@ EXTRA_DIST = \
croco-version-paths.props.in \
$(GENERATED_ITEMS)
-croco-install.props: $(top_srcdir)/build/win32/vs10/croco-install.propsin
- $(CPP) -P - <$< > $@
- -rm croco.vs10.headers
+croco-install.props: $(top_srcdir)/build/win32/vs10/croco-install.propsin croco.vs10.headers
+ $(CPP) -P - <$(top_srcdir)/build/win32/vs10/croco-install.propsin > $@
+ rm croco.vs10.headers
DISTCLEANFILES = $(GENERATED_ITEMS)
diff --git a/build/win32/vs9/Makefile.am b/build/win32/vs9/Makefile.am
index 7e42a9a..9de2db8 100644
--- a/build/win32/vs9/Makefile.am
+++ b/build/win32/vs9/Makefile.am
@@ -32,8 +32,8 @@ EXTRA_DIST = \
croco-version-paths.vsprops.in \
$(GENERATED_ITEMS)
-croco-install.vsprops: $(top_srcdir)/build/win32/vs9/croco-install.vspropsin
- $(CPP) -P -<$< >$@
- -rm croco.headers
+croco-install.vsprops: $(top_srcdir)/build/win32/vs9/croco-install.vspropsin croco.headers
+ $(CPP) -P - <$(top_srcdir)/build/win32/vs9/croco-install.vspropsin >$@
+ rm croco.headers
DISTCLEANFILES = $(GENERATED_ITEMS)