diff options
author | ivan <ivan> | 2001-07-30 08:01:50 +0000 |
---|---|---|
committer | ivan <ivan> | 2001-07-30 08:01:50 +0000 |
commit | 46b8b49cb4691ef3d3dbe4042550d9ce9f49a156 (patch) | |
tree | 65a963ccfd76fe43ac8e82492e8f4e81fea04eb9 | |
parent | e8dd9b3bbf139e1a21180a1efc81129f01d2d18b (diff) |
need this too!
-rw-r--r-- | Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
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 + |