1
0
Fork 0
mirror of https://github.com/jakcron/nstool synced 2025-02-13 13:21:06 +00:00
nstool/lib/makefile

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