arabica/Makefile.am

50 lines
1.6 KiB
Text
Raw Normal View History

2006-09-12 23:21:48 +02:00
ACLOCAL_AMFLAGS = -I m4
2007-07-23 14:58:16 +02:00
SUBDIRS= src examples tests
2006-09-12 23:21:48 +02:00
install-data-local:
@echo "------------------------------------------------------------"
@echo "Installing include files to $(includedir)"
@echo "------------------------------------------------------------"
for inc in `cd $(srcdir)/include && find . -type f -print | grep -v \.svn`; \
do $(INSTALL_HEADER) -D "$(srcdir)/include/$$inc" "$(includedir)/$$inc"; \
done
uninstall-local:
@echo "------------------------------------------------------------"
@echo "Removing include files from $(includedir)"
@echo "------------------------------------------------------------"
for inc in `cd $(srcdir)/include && find . -type f -print | grep -v \.svn`; \
do rm -rf "$(includedir)/$$inc"; \
done
for dir in `cd $(srcdir)/include && find . -type d -print | grep -v \.svn`; \
do rm -rf "$(includedir)/$$dir"; \
done
2007-07-23 14:58:16 +02:00
DIST_SUBDIRS= src examples tests
2006-09-12 23:21:48 +02:00
EXTRA_DIST=vs7 \
2007-08-22 14:36:33 +02:00
vs8 \
2006-09-12 23:21:48 +02:00
include \
src/SAX/wrappers/saxexpat.cpp \
src/SAX/wrappers/saxlibxml2.cpp \
src/SAX/wrappers/saxxerces.cpp \
src/Utils/impl/codecvt_specialisations.cpp
dist-hook:
find $(distdir) -print | grep \.svn | xargs rm -rf
find $(distdir) -print | grep \~$ | xargs rm -rf
pkgconfigdir = src/pkgconfig
pkgconfig_DATA = arabica.pc
2006-09-12 23:21:48 +02:00
2006-10-12 00:51:04 +02:00
test:
2007-07-19 19:43:13 +02:00
@cd tests && make test;
2006-10-12 01:04:59 +02:00
@cd ..
2006-10-12 00:51:04 +02:00
2007-07-19 19:05:18 +02:00
docs:
doxygen doc/arabica.dox
@echo "------------------------------------------------------------"
@echo "Generated documents to ./doc/html"
@echo "------------------------------------------------------------"