Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – tendra.SVN – Blame – /branches/tendra5-amd64/src/tools/Makefile – Rev 17

Subversion Repositories tendra.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 7u83 1
 
15 7u83 2
SUBDIRS = disp tcc tld tnc tpl tspec
6 7u83 3
 
15 7u83 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
13
 
17 7u83 14
install:
15
	for f in $(SUBDIRS) ; do \
16
		cd $$f && $(MAKE) all && $(MAKE) install && cd .. ; \
17
	done
18