1
0
Fork 0
mirror of https://github.com/jakcron/nstool synced 2025-02-19 17:01:03 +00:00
nstool/lib/makefile

10 lines
205 B
Makefile
Raw Normal View History

LIBS = libfnd libcrypto libes libnx
2017-07-03 01:18:59 +10:00
main: build
rebuild: clean build
build:
@$(foreach lib,$(LIBS), cd $(lib) && $(MAKE) && cd ..;)
clean:
@$(foreach lib,$(LIBS), cd $(lib) && $(MAKE) clean && cd ..;)