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.
|
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
|
|
|