first working and tested release
This commit is contained in:
		| @@ -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 | ||||||
|   | |||||||
| @@ -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 | ||||||
|  |  | ||||||
|   | |||||||
| @@ -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
									
								
							
							
						
						
									
										16
									
								
								test/makefile.am
									
									
									
									
									
										Normal 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 | ||||||
		Reference in New Issue
	
	Block a user