You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
208 B
11 lines
208 B
15 years ago
|
SUBDIRS = perl python ruby tcl
|
||
|
|
||
|
all clean install:
|
||
|
list='$(SUBDIRS)'; \
|
||
|
for subdir in $$list; do \
|
||
|
if [ -f $$subdir/Makefile -a -f .$$subdir ] ; \
|
||
|
then $(MAKE) -C $$subdir $@ || exit 1; \
|
||
|
fi \
|
||
|
done
|
||
|
|