first working and tested release

This commit is contained in:
Marc Wäckerlin
2009-04-02 14:01:03 +00:00
parent f483985ffa
commit 242403c67e
6 changed files with 26 additions and 6 deletions

1
COPYING Symbolic link
View File

@@ -0,0 +1 @@
/usr/share/automake-1.10/COPYING

1
INSTALL Symbolic link
View File

@@ -0,0 +1 @@
/usr/share/automake-1.10/INSTALL

View File

@@ -1,6 +1,6 @@
# init # init
AC_INIT([README]) AC_INIT([README])
PACKAGENAME=libxml++ PACKAGENAME=libxml-cxx
SRC_DIR=src SRC_DIR=src
TST_DIR=test TST_DIR=test
DOC_DIR=doc DOC_DIR=doc
@@ -12,7 +12,7 @@ AM_INIT_AUTOMAKE(@PACKAGENAME@, @MAJOR@.@MINOR@.@LEAST@, [marc@waeckerlin.org])
# files to create # files to create
AC_CONFIG_FILES(makefile AC_CONFIG_FILES(makefile
src/makefile src/qmake.pro src/languages.qrc src/makefile test/makefile
doc/doxyfile doc/makefile) doc/doxyfile doc/makefile)
# copy M4 to shell # copy M4 to shell

View File

@@ -8,7 +8,7 @@
#develdir = ${pkgdatadir}/doc/devel #develdir = ${pkgdatadir}/doc/devel
#devel_DATA = devel/index.html #devel_DATA = devel/index.html
ALL_SRC = ${top_srcdir}/src/*.[ch]xx ${top_srcdir}/src/*.doc ALL_SRC = ${top_srcdir}/src/*.[ch]xx ${top_srcdir}/test/*.[ch]xx
DIRS = html latex DIRS = html latex

View File

@@ -5,12 +5,14 @@
## 1 2 3 4 5 6 7 8 ## 1 2 3 4 5 6 7 8
## 45678901234567890123456789012345678901234567890123456789012345678901234567890 ## 45678901234567890123456789012345678901234567890123456789012345678901234567890
lib_LTLIBRARIES = libxml-cxx.la
include_HEADERS = xml.hxx
libxml_cxx_la_SOURCES = xml.cxx
if BUILD_WIN if BUILD_WIN
else else
endif endif
clean-local:
-rm -r ${QMAKE_TARGET}.app
CLEANFILES = CLEANFILES =
MAINTAINERCLEANFILES = makefile.in MAINTAINERCLEANFILES = makefile.in

16
test/makefile.am Normal file
View File

@@ -0,0 +1,16 @@
## @id $Id$
## 1 2 3 4 5 6 7 8
## 45678901234567890123456789012345678901234567890123456789012345678901234567890
AM_CXXFLAGS += -I ${top_srcdir}/src
AM_LDFLAGS = -L${top_builddir}/src
LDADD = -lcppunit -lxml-cxx
check_PROGRAMS=xml_test
TESTS=${check_PROGRAMS}
xml_test_SOURCES = xml_test.cxx
CLEANFILES =
MAINTAINERCLEANFILES = makefile.in