comparison Makefile.pmake @ 172:042580eb6e6c

Use makefile created by autoconf.
author Thinker K.F. Li <thinker@branda.to>
date Fri, 31 Oct 2008 01:01:43 +0800
parents Makefile@9af23d9584d8
children
comparison
equal deleted inserted replaced
171:129de2d83abe 172:042580eb6e6c
1 SUBDIRS= src tools
2
3 all:
4 .for i in $(SUBDIRS)
5 @echo "==> Enter subdirectory $(i)"
6 @cd ${i}; $(MAKE) $@
7 @echo "<== Leave subdirectory $(i)"
8 .endfor
9
10 install:
11 .for i in $(SUBDIRS)
12 @echo "==> Enter subdirectory $(i)"
13 @cd ${i}; $(MAKE) $@
14 @echo "<== Leave subdirectory $(i)"
15 .endfor
16
17 clean:
18 .for i in $(SUBDIRS)
19 @echo "==> Enter subdirectory $(i)"
20 @cd ${i}; $(MAKE) $@
21 @echo "<== Leave subdirectory $(i)"
22 .endfor