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