Unix makefiles
authorcantor <cantor@de75baf8-a10c-0410-a50a-987c0e22f00f>
Sun, 19 Feb 2006 04:44:24 +0000 (04:44 +0000)
committercantor <cantor@de75baf8-a10c-0410-a50a-987c0e22f00f>
Sun, 19 Feb 2006 04:44:24 +0000 (04:44 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-xmltooling/trunk@7 de75baf8-a10c-0410-a50a-987c0e22f00f

xmltooling/Makefile.am [new file with mode: 0644]
xmltooling/config_pub.h.in [new file with mode: 0644]

diff --git a/xmltooling/Makefile.am b/xmltooling/Makefile.am
new file mode 100644 (file)
index 0000000..19db8b5
--- /dev/null
@@ -0,0 +1,46 @@
+AUTOMAKE_OPTIONS = foreign\r
+\r
+lib_LTLIBRARIES = libxmltooling.la\r
+\r
+libxmltoolingincludedir = \\r
+       $(includedir)/xmltooling \\r
+       $(includedir)/xmltooling/util\r
+       \r
+libxmltoolinginclude_HEADERS = \\r
+       base.h \\r
+       config_pub.h \\r
+       exceptions.h \\r
+       ILockable.h \\r
+       Namespace.h \\r
+       QName.h \\r
+       unicode.h \\r
+       version.h \\r
+       XMLObject.h \\r
+       XMLObjectBuilder.h \\r
+       XMLToolingConfig.h \\r
+       util/NDC.h \\r
+       util/ParserPool.h \\r
+       util/XMLConstants.h \\r
+       util/XMLHelper.h\r
+\r
+noinst_HEADERS = \\r
+       internal.h\r
+\r
+libxmltooling_la_SOURCES = \\r
+       Namespace.cpp \\r
+       QName.cpp \\r
+       unicode.cpp \\r
+       XMLToolingConfig.cpp \\r
+       util/NDC.cpp \\r
+       util/ParserPool.cpp \\r
+       util/XMLConstants.cpp \\r
+       util/XMLHelper.cpp\r
+\r
+# this is different from the project version\r
+# http://sources.redhat.com/autobook/autobook/autobook_91.html\r
+libxmltooling_la_LDFLAGS = -version-info 1:0:0\r
+\r
+install-exec-hook:\r
+       for la in $(lib_LTLIBRARIES) ; do rm -f $(DESTDIR)$(libdir)/$$la ; done\r
+\r
+EXTRA_DIST = xmltooling.vcproj config_pub.h.in config_pub_win32.h\r
diff --git a/xmltooling/config_pub.h.in b/xmltooling/config_pub.h.in
new file mode 100644 (file)
index 0000000..da727f3
--- /dev/null
@@ -0,0 +1,4 @@
+/* Define to 1 if you have an STL implementation that supports useful string\r
+   specialization. */\r
+#undef HAVE_GOOD_STL\r
+\r