mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 14:52:08 +00:00
9 lines
111 B
Makefile
9 lines
111 B
Makefile
#!/usr/bin/make
|
|
|
|
SUBDIRS = source
|
|
|
|
all %:
|
|
@for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir $@ || exit; \
|
|
done
|
|
|