summaryrefslogtreecommitdiff
path: root/TAO/Makefile
diff options
context:
space:
mode:
authorChris Cleeland <chris.cleeland@gmail.com>1998-01-13 22:33:23 +0000
committerChris Cleeland <chris.cleeland@gmail.com>1998-01-13 22:33:23 +0000
commite2e0c9ec511a9d1aecaa04d224173de0a197629c (patch)
tree67cca001dcabc7a2a30dd16061907f388507a3b9 /TAO/Makefile
parent689f0bd3be432839a3b4268797c1effacb6ed924 (diff)
downloadATCD-e2e0c9ec511a9d1aecaa04d224173de0a197629c.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/Makefile9
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; )