mirror of
https://github.com/jakcron/nstool.git
synced 2025-01-03 16:35:29 +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 ..;)
|