diff options
author | Roland McGrath <roland@redhat.com> | 1994-04-20 22:25:09 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1994-04-20 22:25:09 +0000 |
commit | 37c95f6d390b5d2ba14f63168864e9d96c751148 (patch) | |
tree | 8692fd3b798bbab75074aefe1fbe299c0c8fb80d /GNUmakefile | |
parent | 22846c70222bb77c34d9d2c730e302552cfad8be (diff) | |
download | gunmake-37c95f6d390b5d2ba14f63168864e9d96c751148.tar.gz |
(dist-flavor): New variable, default to alpha.
(dist): Depend on rcs-mark-$(dist-flavor).
(rcs-mark-beta): New target.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index 65f8b5f..58fe126 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -214,10 +214,13 @@ dist: default info dvi tests tarfiles .PHONY: tarfiles tarfiles: $(tarfiles) -.PHONY: rcs-mark-alpha -dist: rcs-mark-alpha -rcs-mark-alpha: - rcs -sAlpha -Nmake-$(version) RCS/[!=]*,v +ifndef dist-flavor +dist-flavor = alpha +endif +.PHONY: rcs-mark-alpha rcs-mark-beta +dist: rcs-mark-$(dist-flavor) +rcs-mark-alpha:;rcs -sAlpha -Nmake-$(version) RCS/[!=]*,v +rcs-mark-beta:;rcs -sBeta -Nmake-$(version) RCS/[!=]*,v dist: local-inst .PHONY: local-inst |