mirror of
https://github.com/joel16/leda.git
synced 2024-11-26 21:10:32 +00:00
8 lines
163 B
Makefile
8 lines
163 B
Makefile
|
SUBDIRS = libpspsystemctrl_kernel plugin
|
||
|
|
||
|
all:
|
||
|
@for dir in $(SUBDIRS); do $(MAKE) -C $$dir; done
|
||
|
|
||
|
clean:
|
||
|
@for dir in $(SUBDIRS); do $(MAKE) clean -C $$dir; done
|