summaryrefslogtreecommitdiff
path: root/doc/Makefile
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-16 18:44:33 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-16 18:44:33 +0000
commit53a3cc7b17f4cf97075b7e71720777fd84109696 (patch)
tree0cc784e0b47ea49cc151a136d19f20bfa8ee2197 /doc/Makefile
parentdf50e05006b43b007c2587549030d24b5c154398 (diff)
downloadscala-53a3cc7b17f4cf97075b7e71720777fd84109696.tar.gz
scala-53a3cc7b17f4cf97075b7e71720777fd84109696.tar.bz2
scala-53a3cc7b17f4cf97075b7e71720777fd84109696.zip
Created proper 'docs' folder for new layout.
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile38
1 files changed, 0 insertions, 38 deletions
diff --git a/doc/Makefile b/doc/Makefile
deleted file mode 100644
index fffeb3bf7c..0000000000
--- a/doc/Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-############################################################-*-Makefile-*-####
-# Scala documentation
-##############################################################################
-# $Id$
-
-
-##############################################################################
-
-SUBDIRS += introduction
-SUBDIRS += papers
-SUBDIRS += reference
-SUBDIRS += tutorial
-
-MAKE = make
-
-##############################################################################
-# Commands
-
-all:
- @for dir in $(SUBDIRS); do \
- $(MAKE) -C $$dir; \
- done
-
-clean:
- @for dir in $(SUBDIRS); do \
- $(MAKE) clean -C $$dir; \
- done
-
-distclean:
- @for dir in $(SUBDIRS); do \
- $(MAKE) distclean -C $$dir; \
- done
-
-.PHONY: all
-.PHONY: clean
-.PHONY: distclean
-
-##############################################################################