mirror of
https://github.com/joel16/NTPSP.git
synced 2024-11-23 11:19:48 +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
|