This commit is contained in:
Joseph Carter 2000-05-13 02:59:24 +00:00
parent b6374867c1
commit 88dbd85049
1 changed files with 9 additions and 0 deletions

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