author | Michael Krelin <hacker@klever.net> | 2005-02-13 17:01:51 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2005-02-13 17:01:51 (UTC) |
commit | 9aa669090e978dce5e1f4d1ca9d23a4d92208518 (patch) (side-by-side diff) | |
tree | 37b8b1a8df046d2154af30f85f251ca5271672e5 /Makefile.am | |
parent | ce1f37aae46ea95020d7b865f7a80e8abdfad0d8 (diff) | |
download | sitecing-9aa669090e978dce5e1f4d1ca9d23a4d92208518.zip sitecing-9aa669090e978dce5e1f4d1ca9d23a4d92208518.tar.gz sitecing-9aa669090e978dce5e1f4d1ca9d23a4d92208518.tar.bz2 |
1. made fastcgi support optional
2. added 'plain' cgi support (kingate 0.0.1 required for it)
3. bumped version to 0.0.1
4. excluded doxygen 'dox' target from 'all'
-rw-r--r-- | Makefile.am | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/Makefile.am b/Makefile.am index 68f550d..fb04e49 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,27 +1,22 @@ SUBDIRS=include lib share src components EXTRA_DIST= NEWS NEWS.xml NEWS.xsl DISTCHECK_CONFIGURE_FLAGS=--with-pkgconfigdir=$${dc_install_base}/lib/pkgconfig if HAVE_PKGCONFIG pkgconfigdir=@PKGCONFIG_DIR@ pkgconfig_DATA=sitecing.pc endif -LOCAL_TARGETS= +all-local: NEWS if HAVE_DOXYGEN -LOCAL_TARGETS+=doxygen +clean-local: + rm -rf doxydox endif -all-local: NEWS $(addprefix all-lota-,${LOCAL_TARGETS}) -clean-local: $(addprefix clean-lota-,${LOCAL_TARGETS}) - NEWS: NEWS.xsl NEWS.xml ${XSLTPROC} -o $@ NEWS.xsl NEWS.xml -all-lota-doxygen: doxydox/built -doxydox/built: $(wildcard ${top_srcdir}/include/sitecing/*.h) +if HAVE_DOXYGEN +dox: ${DOXYGEN} - touch $@ - -clean-lota-doxygen: - rm -rf doxydox +endif |