summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-04-14 10:53:19 +0000
committerpaltherr <paltherr@epfl.ch>2003-04-14 10:53:19 +0000
commit8f51cb5a38a44f1f9f8074db476545eb57bb12d9 (patch)
tree3144513c6de18437088d55a5d3642c458de50647 /Makefile
parent6b71c4960af53ebcc5456a4d70145a73c16c7c95 (diff)
downloadscala-8f51cb5a38a44f1f9f8074db476545eb57bb12d9.tar.gz
scala-8f51cb5a38a44f1f9f8074db476545eb57bb12d9.tar.bz2
scala-8f51cb5a38a44f1f9f8074db476545eb57bb12d9.zip
- Added rule fixcvs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 078862764b..6f2eb807ff 100644
--- a/Makefile
+++ b/Makefile
@@ -157,6 +157,7 @@ DATE ?= date
NICE ?= nice
ZIP ?= zip
UNIX2DOS ?= unix2dos
+XARGS ?= xargs
PICO ?= pico
PICO_FLAGS += -make -source 1.4
@@ -202,6 +203,12 @@ distclean : clean
$(RM) $(PROJECT_JAR_ARCHIVE)
$(RM) $(ROOT)/support/latex/*.class
+fixcvs :
+ $(strip \
+ $(FIND) . -type f -perm +a=x | \
+ $(GREP) -v '.*/bin/.*' | \
+ $(XARGS) -r $(CHMOD) a-x)
+
scripts : $(SCRIPTS_WRAPPER_LINKS)
meta : .latest-meta
runtime : .latest-runtime
@@ -213,6 +220,7 @@ library : .latest-library
.PHONY : force
.PHONY : clean
.PHONY : distclean
+.PHONY : fixcvs
.PHONY : scripts
.PHONY : meta
.PHONY : runtime