1
0
Fork 0
mirror of https://github.com/jakcron/nstool.git synced 2025-01-11 12:05:28 +00:00
nstool/lib/makefile

10 lines
205 B
Makefile

LIBS = libfnd libcrypto libes libnx
main: build
rebuild: clean build
build:
@$(foreach lib,$(LIBS), cd $(lib) && $(MAKE) && cd ..;)
clean:
@$(foreach lib,$(LIBS), cd $(lib) && $(MAKE) clean && cd ..;)