add Makefile to run all the nested ones

This commit is contained in:
BernardoGiordano 2018-05-15 11:53:29 +02:00
parent 281f1a7b1b
commit 5f8861845b

7
Makefile Normal file
View file

@ -0,0 +1,7 @@
SUBDIRS = 3ds switch
all:
@for dir in $(SUBDIRS); do $(MAKE) -C $$dir; done
clean:
@for dir in $(SUBDIRS); do $(MAKE) clean -C $$dir; done