1
0
Fork 0
mirror of https://github.com/jakcron/nstool.git synced 2025-01-11 20:15:28 +00:00
nstool/lib/makefile
2018-06-10 14:57:00 +08:00

10 lines
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 ..;)