Checkpoint/Makefile

21 lines
363 B
Makefile
Raw Normal View History

SUBDIRS = 3ds switch
all:
@for dir in $(SUBDIRS); do $(MAKE) -C $$dir; done
clean:
@for dir in $(SUBDIRS); do $(MAKE) clean -C $$dir; done
3ds:
2018-12-14 17:16:58 +00:00
@$(MAKE) -C 3ds
switch:
2018-12-14 17:16:58 +00:00
@$(MAKE) -C switch
2019-05-06 20:51:09 +00:00
format:
@for dir in $(SUBDIRS); do $(MAKE) -C $$dir format; done
2019-05-18 20:51:58 +00:00
cppcheck:
2019-07-09 21:13:23 +00:00
cppcheck . --enable=all --force 2> cppcheck.log
2019-05-18 20:51:58 +00:00
.PHONY: $(SUBDIRS) clean format cppcheck