From 46b8b49cb4691ef3d3dbe4042550d9ce9f49a156 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 30 Jul 2001 08:01:50 +0000 Subject: [PATCH] need this too! --- Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Makefile 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 + -- 2.11.0