|
From: <tbr...@us...> - 2012-03-20 14:49:51
|
Revision: 214
http://xmlwrapp.svn.sourceforge.net/xmlwrapp/?rev=214&view=rev
Author: tbrowder2
Date: 2012-03-20 14:49:40 +0000 (Tue, 20 Mar 2012)
Log Message:
-----------
ensure Makefile.in files are removed with distclean target
Modified Paths:
--------------
trunk/Makefile.am
trunk/docs/Makefile.am
trunk/examples/01-tree_parsing/Makefile.am
trunk/examples/02-event_parsing/Makefile.am
trunk/examples/03-xml_generation/Makefile.am
trunk/examples/04-xslt/Makefile.am
trunk/examples/Makefile.am
trunk/include/Makefile.am
trunk/src/Makefile.am
trunk/tests/Makefile.am
Modified: trunk/Makefile.am
===================================================================
--- trunk/Makefile.am 2012-03-20 14:35:16 UTC (rev 213)
+++ trunk/Makefile.am 2012-03-20 14:49:40 UTC (rev 214)
@@ -21,3 +21,5 @@
dist-hook:
(cd $(distdir)/platform/Win32 ; bakefile_gen)
rm -f $(distdir)/platform/Win32/.bakefile_gen.state
+
+DISTCLEANFILES = Makefile.in
Modified: trunk/docs/Makefile.am
===================================================================
--- trunk/docs/Makefile.am 2012-03-20 14:35:16 UTC (rev 213)
+++ trunk/docs/Makefile.am 2012-03-20 14:49:40 UTC (rev 214)
@@ -5,3 +5,5 @@
dist-hook:
cd $(distdir) && doxygen
+
+DISTCLEANFILES = Makefile.in
Modified: trunk/examples/01-tree_parsing/Makefile.am
===================================================================
--- trunk/examples/01-tree_parsing/Makefile.am 2012-03-20 14:35:16 UTC (rev 213)
+++ trunk/examples/01-tree_parsing/Makefile.am 2012-03-20 14:49:40 UTC (rev 214)
@@ -4,3 +4,5 @@
example_SOURCES = example.cc
example_CPPFLAGS = -I$(top_srcdir)/include
example_LDADD = ../../src/libxmlwrapp.la
+
+DISTCLEANFILES = Makefile.in
Modified: trunk/examples/02-event_parsing/Makefile.am
===================================================================
--- trunk/examples/02-event_parsing/Makefile.am 2012-03-20 14:35:16 UTC (rev 213)
+++ trunk/examples/02-event_parsing/Makefile.am 2012-03-20 14:49:40 UTC (rev 214)
@@ -4,3 +4,5 @@
example_SOURCES = example.cc
example_CPPFLAGS = -I$(top_srcdir)/include
example_LDADD = ../../src/libxmlwrapp.la
+
+DISTCLEANFILES = Makefile.in
Modified: trunk/examples/03-xml_generation/Makefile.am
===================================================================
--- trunk/examples/03-xml_generation/Makefile.am 2012-03-20 14:35:16 UTC (rev 213)
+++ trunk/examples/03-xml_generation/Makefile.am 2012-03-20 14:49:40 UTC (rev 214)
@@ -4,3 +4,5 @@
example_SOURCES = example.cc
example_CPPFLAGS = -I$(top_srcdir)/include
example_LDADD = ../../src/libxmlwrapp.la
+
+DISTCLEANFILES = Makefile.in
Modified: trunk/examples/04-xslt/Makefile.am
===================================================================
--- trunk/examples/04-xslt/Makefile.am 2012-03-20 14:35:16 UTC (rev 213)
+++ trunk/examples/04-xslt/Makefile.am 2012-03-20 14:49:40 UTC (rev 214)
@@ -10,3 +10,5 @@
endif
EXTRA_DIST = example.xml example.xsl
+
+DISTCLEANFILES = Makefile.in
Modified: trunk/examples/Makefile.am
===================================================================
--- trunk/examples/Makefile.am 2012-03-20 14:35:16 UTC (rev 213)
+++ trunk/examples/Makefile.am 2012-03-20 14:49:40 UTC (rev 214)
@@ -4,3 +4,5 @@
02-event_parsing \
03-xml_generation \
04-xslt
+
+DISTCLEANFILES = Makefile.in
Modified: trunk/include/Makefile.am
===================================================================
--- trunk/include/Makefile.am 2012-03-20 14:35:16 UTC (rev 213)
+++ trunk/include/Makefile.am 2012-03-20 14:49:40 UTC (rev 214)
@@ -14,6 +14,10 @@
xmlwrapp/version.h \
xmlwrapp/xmlwrapp.h
+xmlwrappstring_includedir= $(includedir)/xmlwrappstring
+xmlwrappstring_include_HEADERS = \
+ xmlwrappstring/xmlwrappstring.h
+
if WITH_XSLT
xsltwrapp_includedir= $(includedir)/xsltwrapp
xsltwrapp_include_HEADERS = \
@@ -21,3 +25,5 @@
xsltwrapp/stylesheet.h \
xsltwrapp/xsltwrapp.h
endif
+
+DISTCLEANFILES = Makefile.in
Modified: trunk/src/Makefile.am
===================================================================
--- trunk/src/Makefile.am 2012-03-20 14:35:16 UTC (rev 213)
+++ trunk/src/Makefile.am 2012-03-20 14:49:40 UTC (rev 214)
@@ -52,3 +52,5 @@
libxslt/stylesheet.cc
endif
+
+DISTCLEANFILES = Makefile.in
Modified: trunk/tests/Makefile.am
===================================================================
--- trunk/tests/Makefile.am 2012-03-20 14:35:16 UTC (rev 213)
+++ trunk/tests/Makefile.am 2012-03-20 14:49:40 UTC (rev 214)
@@ -31,3 +31,5 @@
$(srcdir)/*/data/*.xsl \
$(srcdir)/*/data/*.dtd \
$(srcdir)/*/data/output
+
+DISTCLEANFILES = Makefile.in
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|