summaryrefslogtreecommitdiffabout
path: root/Makefile.am
authorMichael Krelin <hacker@klever.net>2005-02-13 17:01:51 (UTC)
committer Michael Krelin <hacker@klever.net>2005-02-13 17:01:51 (UTC)
commit9aa669090e978dce5e1f4d1ca9d23a4d92208518 (patch) (unidiff)
tree37b8b1a8df046d2154af30f85f251ca5271672e5 /Makefile.am
parentce1f37aae46ea95020d7b865f7a80e8abdfad0d8 (diff)
downloadsitecing-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'
Diffstat (limited to 'Makefile.am') (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile.am17
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
@@ -7,21 +7,16 @@ pkgconfigdir=@PKGCONFIG_DIR@
7pkgconfig_DATA=sitecing.pc 7pkgconfig_DATA=sitecing.pc
8endif 8endif
9 9
10LOCAL_TARGETS= 10all-local: NEWS
11if HAVE_DOXYGEN 11if HAVE_DOXYGEN
12LOCAL_TARGETS+=doxygen 12clean-local:
13 rm -rf doxydox
13endif 14endif
14 15
15all-local: NEWS $(addprefix all-lota-,${LOCAL_TARGETS})
16clean-local: $(addprefix clean-lota-,${LOCAL_TARGETS})
17
18NEWS: NEWS.xsl NEWS.xml 16NEWS: NEWS.xsl NEWS.xml
19 ${XSLTPROC} -o $@ NEWS.xsl NEWS.xml 17 ${XSLTPROC} -o $@ NEWS.xsl NEWS.xml
20 18
21all-lota-doxygen: doxydox/built 19if HAVE_DOXYGEN
22doxydox/built: $(wildcard ${top_srcdir}/include/sitecing/*.h) 20dox:
23 ${DOXYGEN} 21 ${DOXYGEN}
24 touch $@ 22endif
25
26clean-lota-doxygen:
27 rm -rf doxydox