C++ class for reading and writing XML structures. No need for a C++ code parser or special pre compiler. Specify a schema entirly in native C++. The schema is verified when XML is read and exceptions are thrown when the XML to be parse is invalid.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.1 KiB

15 years ago
## @file
##
## $Id$
##
## 1 2 3 4 5 6 7 8
## 45678901234567890123456789012345678901234567890123456789012345678901234567890
develdir = ${pkgdatadir}/doc
15 years ago
devel_DATA = html/index.html
15 years ago
15 years ago
ALL_SRC = ${top_srcdir}/*/*.[ch]xx ${top_srcdir}/*/*/*.[ch]xx
15 years ago
DIRS = html latex
all: ${DIRS}
.PHONY: doc clean-local distclean-local dist-hool install-data-hook \
uninstall-hook
deps = ${top_srcdir}/COPYING ${top_srcdir}/README \
${top_srcdir}/INSTALL ${top_srcdir}/NEWS ${top_srcdir}/ChangeLog
${devel_DATA}: ${ALL_SRC} doxyfile ${deps}
15 years ago
doxygen doxyfile
if PEDANTIC
test \! -s doxygen.errors
endif
cd latex && make
mv latex/refman.pdf @PACKAGENAME@-@MAJOR@.@MINOR@.@LEAST@.pdf
CLEANFILES = doxygen.errors @PACKAGENAME@-@MAJOR@.@MINOR@.@LEAST@.pdf
DISTCLEANFILES = @PACKAGENAME@.doxytag
MAINTAINERCLEANFILES = makefile.in
15 years ago
distclean-local:
- rm -r html latex
dist-hook: ${devel_DATA}
15 years ago
cp -r html ${distdir}/
15 years ago
15 years ago
install-data-hook:
chmod -R u+w ${develdir}
cp -r html/* ${develdir}/
15 years ago
uninstall-hook:
-chmod -R u+w ${develdir}
-rm -rf ${develdir}/*