mirror of
https://github.com/joel16/NTPSP.git
synced 2024-11-27 05:00:24 +00:00
8 lines
143 B
Makefile
8 lines
143 B
Makefile
|
SUBDIRS = plugin app
|
||
|
|
||
|
all:
|
||
|
@for dir in $(SUBDIRS); do $(MAKE) -C $$dir; done
|
||
|
|
||
|
clean:
|
||
|
@for dir in $(SUBDIRS); do $(MAKE) clean -C $$dir; done
|