This commit is contained in:
Joseph Carter 2000-05-13 02:59:24 +00:00
parent b6374867c1
commit 88dbd85049

9
Makefile Normal file
View file

@ -0,0 +1,9 @@
#!/usr/bin/make
SUBDIRS = source
all %:
@for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir $@ || exit; \
done