summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2004-01-20 15:02:07 +0000
committerpaltherr <paltherr@epfl.ch>2004-01-20 15:02:07 +0000
commitc1344232ada1778d9759eac35341477677190424 (patch)
treeb0128fe8169e872d95f92342990e813fdf5a85a4
parent4ae2a110b2398606fad4c7b762d8502b7225725c (diff)
downloadscala-c1344232ada1778d9759eac35341477677190424.tar.gz
scala-c1344232ada1778d9759eac35341477677190424.tar.bz2
scala-c1344232ada1778d9759eac35341477677190424.zip
- Added creation of addons directoryv1.0.0-b6
-rw-r--r--Makefile.distrib11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile.distrib b/Makefile.distrib
index 7b9f49a6a6..9d40e25971 100644
--- a/Makefile.distrib
+++ b/Makefile.distrib
@@ -169,8 +169,16 @@ install-windows : install
$(FIND) $(INSTALL_SUPPORTDIR) -type f -exec $(UNIX2DOS) "{}" ";"
$(RM) -r $(INSTALL_TESTDIR)
+install-addons :
+ $(RM) -r $(DISTRIB_ARCHIVE).addons
+ $(INSTALL) -d $(DISTRIB_ARCHIVE).addons
+ $(INSTALL) -d $(DISTRIB_ARCHIVE).addons/doc
+ $(INSTALL) $(DOCUMENTS_ROOT)/reference/ProgrammingInScala.pdf \
+ $(DISTRIB_ARCHIVE).addons/doc
+
.PHONY : install
.PHONY : install-windows
+.PHONY : install-addons
##############################################################################
@@ -230,6 +238,7 @@ distrib : distrib-build-all
distrib-build-all : distrib-build-unix
distrib-build-all : distrib-build-windows
distrib-build-all : distrib-build-ia
+distrib-build-all : distrib-build-addons
distrib-build-unix : install
$(RM) $(DISTRIB_ARCHIVE).tar
@@ -255,6 +264,8 @@ distrib-build-windows : install-windows
distrib-build-ia : ia-build
+distrib-build-addons : install-addons
+
distrib-official : version-update
@$(make) distrib INSTALL_VERSION='$$(PROJECT_VERSION)'
$(CVS) tag "release-$(subst .,_,$(PROJECT_VERSION))" $(PROJECT_ROOT)