summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-03 03:39:22 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-03 03:39:22 +0000
commit4e326efd53d627f822d3f308460c78f27f1aa6b9 (patch)
tree1d2680ed25f8a812436a6f7736ba8071a6920a71 /Makefile
parent39c0a6562fc7d60e3988b8764329160e12511ae8 (diff)
downloadATCD-4e326efd53d627f822d3f308460c78f27f1aa6b9.tar.gz
added support for suppressing man page regeneration on make release
command line
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 9 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index d650d8a8a19..eae1c969ae7 100644
--- a/Makefile
+++ b/Makefile
@@ -7,8 +7,8 @@
#### The "release" and "releaseall" targets can be used to create
#### the ACE and ACE+TAO kits. By default, each creates a new beta
-#### release. To create a new minor or major release, add "REL=minor"
-#### or "REL=major", respectively, to the make invocation.
+#### release. To create a new minor or major release, add REL=minor
+#### or REL=major, respectively, to the make invocation.
####
#### NOTE: the REL modifier applies to _both_ ACE and TAO in
#### releaseall!
@@ -19,7 +19,11 @@
#### % make release
####
#### To see what make release* would do without actually doing it, add
-#### "CHECK=-n" to the invocation.
+#### CHECK=-n to the invocation.
+####
+#### By default, make release* will regenerate the contents of the man
+#### directory. To suppress that, add GENERATE_MAN_PAGES= to your
+#### make release or make releaseall invocation.
#----------------------------------------------------------------------------
# Local macros
@@ -119,10 +123,11 @@ RELEASE_LIB_FILES = \
REL = beta
CHECK =
+GENERATE_MAN_PAGES = $(ACE_ROOT)/bin/generate_man_pages
#### The release target creates the ACE (only) kit.
release: ACE-INSTALL
- @$(ACE_ROOT)/bin/generate_man_pages
+ @$(GENERATE_MAN_PAGES)
@$(ACE_ROOT)/bin/make_release $(CHECK) -k ace -t $(REL) \
-c "$(CONTROLLED_FILES)" -r "$(RELEASE_FILES)" \
-l "$(RELEASE_LIB_FILES)"