diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-12 20:52:23 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-12 20:52:23 +0000 |
commit | 91bda41f497c290f4e630c0666ed107b41e6c8a1 (patch) | |
tree | b7f69b2f5bb01e88fa6a6a4ad055f301bba632a2 /TAO/Makefile | |
parent | 5f7c29f2da64d7c8b437ea8329ec1eebca2df21a (diff) | |
download | ATCD-91bda41f497c290f4e630c0666ed107b41e6c8a1.tar.gz |
ChangeLogTag: Thu Aug 12 15:49:00 1999 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'TAO/Makefile')
-rw-r--r-- | TAO/Makefile | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/TAO/Makefile b/TAO/Makefile index 169784a4efc..82b5d792666 100644 --- a/TAO/Makefile +++ b/TAO/Makefile @@ -93,7 +93,7 @@ INSTALL: TAO-INSTALL.html orbsvcs/README: docs/orbsvcs.html @lynx -dump $^ > $@; chmod a+r $@ -.PHONY: release +.PHONY: release tag REL = beta CHECK = @@ -102,7 +102,19 @@ CHECK = #### If creating a release in /project/adaptive/ACE_wrappers/TAO, it #### just updates the VERSION and ChangeLog files, and tags the release. #### Then, make releasetao is invoked to actually create the kit. -release: INSTALL - @$(ACE_ROOT)/bin/make_release $(CHECK) -k tao -t $(REL) \ - -c "$(CONTROLLED_FILES)" -r "$(RELEASE_FILES)" -u && \ - cd .. && $(MAKE) releasetao +release: tag + @cd .. && $(MAKE) -s releasetao + +tag: + @$(ACE_ROOT)/bin/make_release $(CHECK) -k tao -v $(REL) -u + +.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 "" |