diff options
author | ivan <ivan> | 2002-09-04 12:43:07 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-09-04 12:43:07 +0000 |
commit | 6b1038b81b5d5824b54376abf7b1e562cde17cb9 (patch) | |
tree | 888153e766d69f550cc38cb8d6ee695aa4bb3bc1 /Makefile | |
parent | 83b1806aa999a09a2825f3d8343e85d48e803f12 (diff) |
1.4.1beta1
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -40,8 +40,8 @@ SIGNUP_REFNUM = 2 #not changable yet FREESIDE_CONF = /usr/local/etc/freeside -VERSION=1.4.0 -TAG=freeside_1_4_0 +VERSION=1.4.1beta1 +TAG=freeside_1_4_1beta1 help: @echo "supported targets: aspdocs masondocs alldocs docs install-docs" @@ -54,14 +54,21 @@ help: aspdocs: htmlman httemplate/* httemplate/*/* httemplate/*/*/* httemplate/*/*/*/* httemplate/*/*/*/*/* rm -rf aspdocs cp -pr httemplate aspdocs + perl -p -i -e "\ + s/%%%VERSION%%%/${VERSION}/g;\ + " aspdocs/index.html touch aspdocs + masondocs: htmlman httemplate/* httemplate/*/* httemplate/*/*/* httemplate/*/*/*/* httemplate/*/*/*/*/* rm -rf masondocs cp -pr httemplate masondocs ( cd masondocs; \ ../bin/masonize; \ ) + perl -p -i -e "\ + s/%%%VERSION%%%/${VERSION}/g;\ + " masondocs/index.html touch masondocs alldocs: aspdocs masondocs |