mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
10 lines
190 B
Makefile
10 lines
190 B
Makefile
|
LIBS = fnd crypto nx
|
||
|
main: build
|
||
|
|
||
|
rebuild: clean build
|
||
|
|
||
|
build:
|
||
|
@$(foreach lib,$(LIBS), cd $(lib) && $(MAKE) && cd ..;)
|
||
|
|
||
|
clean:
|
||
|
@$(foreach lib,$(LIBS), cd $(lib) && $(MAKE) clean && cd ..;)
|