From: ivan Date: Mon, 30 Jul 2001 08:01:50 +0000 (+0000) Subject: need this too! X-Git-Tag: merged-freeside_vpopmail_support~26 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;ds=sidebyside;h=46b8b49cb4691ef3d3dbe4042550d9ce9f49a156;p=freeside.git need this too! --- diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..869613c62 --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +#!/usr/bin/make + +default: + @echo "supported targets: aspdocs masondocs clean" + +aspdocs: httemplate/* httemplate/*/* httemplate/*/*/* httemplate/*/*/*/* httemplate/*/*/*/*/* + rm -rf aspdocs + cp -pr httemplate aspdocs + touch aspdocs + +masondocs: httemplate/* httemplate/*/* httemplate/*/*/* httemplate/*/*/*/* httemplate/*/*/*/*/* + rm -rf masondocs + cp -pr httemplate masondocs + ( cd masondocs; \ + ../bin/masonize; \ + ) + touch masondocs + +alldocs: aspdocs masondocs + +clean: + rm -rf aspdocs masondocs +