From 188e62e3805d24582aab788bdfe307831f79e41b Mon Sep 17 00:00:00 2001 From: darkeye Date: Sun, 12 Nov 2000 13:30:14 +0000 Subject: [PATCH] added rules to make kdoc-style C++ source documentation and to include this in the distribution as well --- darkice/trunk/Makefile.am | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/darkice/trunk/Makefile.am b/darkice/trunk/Makefile.am index af437a6..610aa3f 100644 --- a/darkice/trunk/Makefile.am +++ b/darkice/trunk/Makefile.am @@ -1 +1,11 @@ SUBDIRS = src +EXTRA_DIST = doc + +dist-hook: kdocs + +kdocs: src + cd src; kdoc --private --strip-h-path --name DarkIce --outputdir ../doc/ *.h + +kdocs_clean: + rm -rf doc/ +