1
0
Fork 0
mirror of https://github.com/jakcron/nstool synced 2025-02-23 10:51:41 +00:00
nstool/lib/makefile
2018-06-10 14:57:00 +08:00

10 lines
No EOL
226 B
Makefile

LIBS = libfnd libcrypto libcompress libes 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 ..;)