Subversion Repositories tendra.SVN

Rev

Rev 6 | Rev 17 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6 Rev 15
Line 1... Line -...
1
# $Id$
-
 
2
 
1
 
3
SUBDIR = disp tcc tld tnc tpl tspec
2
SUBDIRS = disp tcc tld tnc tpl tspec
-
 
3
 
-
 
4
all:
-
 
5
	for f in $(SUBDIRS) ; do \
-
 
6
		cd $$f && $(MAKE) && cd .. || exit 1; \
-
 
7
	done
-
 
8
 
-
 
9
clean:
-
 
10
	for f in $(SUBDIRS) ; do \
-
 
11
		cd $$f && $(MAKE) clean && cd .. ; \
-
 
12
	done
4
 
13
 
5
.include "Makefile.inc"
-