mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
10 lines
No EOL
233 B
Makefile
10 lines
No EOL
233 B
Makefile
LIBS = libfnd libcrypto libcompress libes libpki libnx libnx-hb
|
|
main: build
|
|
|
|
rebuild: clean build
|
|
|
|
build:
|
|
@$(foreach lib,$(LIBS), cd $(lib) && $(MAKE) && cd ..;)
|
|
|
|
clean:
|
|
@$(foreach lib,$(LIBS), cd $(lib) && $(MAKE) clean && cd ..;)
|