summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-12 20:52:23 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-12 20:52:23 +0000
commit26dac6f58dbf1518435c9780f98a7731ed458096 (patch)
treeb7f69b2f5bb01e88fa6a6a4ad055f301bba632a2 /Makefile
parent16612c8dcaeae759182246473621022175a0d19e (diff)
downloadATCD-26dac6f58dbf1518435c9780f98a7731ed458096.tar.gz
ChangeLogTag: Thu Aug 12 15:49:00 1999 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile40
1 files changed, 29 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index 032581c5220..404c9a149f6 100644
--- a/Makefile
+++ b/Makefile
@@ -150,25 +150,32 @@ RELEASE_LIB_FILES = \
ACE_wrappers/tests \
ACE_wrappers/websvcs
-.PHONY: release releasetao releaseall
+.PHONY: release releasetao releaseall tag
REL = beta
CHECK =
-GENERATE_MAN_PAGES = $(ACE_ROOT)/bin/generate_man_pages
+GENERATE_MAN_PAGES = -g
#### The release target creates the ACE (only) kit.
-release: ACE-INSTALL
- @$(GENERATE_MAN_PAGES)
- @$(ACE_ROOT)/bin/make_release $(CHECK) -k ace -t $(REL) \
- -c "$(CONTROLLED_FILES)" -r "$(RELEASE_FILES)" \
- -l "$(RELEASE_LIB_FILES)" -u
+release: tag
+ @$(ACE_ROOT)/bin/make_release $(CHECK) -i -k ace -v $(REL) \
+ $(GENERATE_MAN_PAGES) \
+ -ta `head -1 VERSION | perl -ne \
+ 's/.* ([\d\.]+),.*\n/$$1/; tr/./_/; print "ACE-$$_";'`
+
+tag:
+ @$(ACE_ROOT)/bin/make_release $(CHECK) -k ace -v $(REL) -u
#### The following target is for use by the TAO Makefile. It should not
#### be called directly from the command line. The releasetao target
#### creates the combined ACE-TAO kit.
releasetao:
- @$(ACE_ROOT)/bin/make_release $(CHECK) -k ace+tao -t $(REL) \
- -c "$(CONTROLLED_FILES)" -r "$(ALL_RELEASE_FILES)" -u
+ @$(ACE_ROOT)/bin/make_release $(CHECK) -i -k ace+tao -v $(REL) \
+ $(GENERATE_MAN_PAGES) \
+ -ta `head -1 VERSION | perl -ne \
+ 's/.* ([\d\.]+),.*\n/$$1/; tr/./_/; print "ACE-$$_";'` \
+ -tt `head -1 TAO/VERSION | perl -ne \
+ 's/.* ([\d\.]+),.*\n/$$1/; tr/./_/; print "TAO-$$_";'`
#### The releaseall target:
#### 1) Creates the ACE kit.
@@ -176,8 +183,19 @@ releasetao:
#### recursively invoking make release in the TAO directory.
#### The make then recursively invokes make releasetao in this
#### directory to create the combined ACE-TAO kit.
-releaseall: release
- @cd TAO && $(MAKE) release REL=$(REL)
+releaseall: tag
+ @cd TAO && $(MAKE) -s release REL=$(REL)
+
+.PHONY: show_controlled_files show_release_files show_release_lib_files
+
+show_controlled_files:
+ @echo $(CONTROLLED_FILES)
+
+show_release_files:
+ @echo $(RELEASE_FILES)
+
+show_release_lib_files:
+ @echo $(RELEASE_LIB_FILES)
ACE-INSTALL: ACE-INSTALL.html
@lynx -dump $< > $@