diff options
author | cleeland <cleeland@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-13 22:33:23 +0000 |
---|---|---|
committer | cleeland <cleeland@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-13 22:33:23 +0000 |
commit | a8eba48676e78fed3e6b929d60da11b81e83a365 (patch) | |
tree | 67cca001dcabc7a2a30dd16061907f388507a3b9 /TAO/Makefile | |
parent | 1b9f7eca30a01bacdb768a847dbd33e838b6dd29 (diff) | |
download | ATCD-a8eba48676e78fed3e6b929d60da11b81e83a365.tar.gz |
* Makefile (INSTALL): Added a rule to build the INSTALL file from
TAO-INSTALL.html. Also added both TAO-INSTALL.html and INSTALL to
the list of files included in the release. TAO-INSTALL.html had
not been included at all.
* TAO-INSTALL.html: Updated some of the text in the Unix portion
to be explicit regarding the need for GNU Make.
* INSTALL: Added this file, which is the output of 'lynx -dump
TAO-INSTALL.html'.
Diffstat (limited to 'TAO/Makefile')
-rw-r--r-- | TAO/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/TAO/Makefile b/TAO/Makefile index 05970883f13..b17aaf387af 100644 --- a/TAO/Makefile +++ b/TAO/Makefile @@ -44,6 +44,8 @@ clone: done RELEASE_FILES = TAO/ChangeLog \ + TAO/INSTALL \ + TAO/TAO-INSTALL.html \ TAO/COPYING \ TAO/COPYING.sun \ TAO/docs \ @@ -57,6 +59,9 @@ RELEASE_FILES = TAO/ChangeLog \ TAO/tests \ TAO/VERSION +INSTALL: TAO-INSTALL.html + lynx -dump $^ > $@ + #### If creating the "official" TAO release: #### 1) Check that the workspace is up-to-date, and bail out if not. #### 2) Update the timestamp in the VERSION file. @@ -103,12 +108,12 @@ endif FILTER = -name CVS -prune -o ! -name '.\#*' ! -name '\#*' ! -name '*~' -print -cleanrelease: +cleanrelease: INSTALL @$(TIMESTAMP) (make realclean; cd ..; \ find $(RELEASE_FILES) $(FILTER) | cpio -o -H tar | gzip -9 > TAO.tar.gz; \ chmod a+r TAO.tar.gz; ) -release: +release: INSTALL @$(TIMESTAMP) (cd ..; \ find $(RELEASE_FILES) $(FILTER) | cpio -o -H tar | gzip -9 > TAO.tar.gz; \ chmod a+r TAO.tar.gz; ) |