mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-20 08:48:13 +00:00
1ffa13180f
svn-id: r23460
21 lines
424 B
Makefile
21 lines
424 B
Makefile
#SUBDIRS:= `ls | egrep -v '^(CVS|tools)$$'`
|
|
|
|
|
|
|
|
|
|
export PATH := $(DEVKITARM)/bin:$(PATH)
|
|
|
|
export portdir = $(CURDIR)/arm9
|
|
export srcdir = $(CURDIR)/../../..
|
|
|
|
|
|
SUBDIRS := arm7 arm9
|
|
|
|
all:
|
|
@for i in $(SUBDIRS); do if test -d $$i; then make -C $$i; fi; done;
|
|
clean:
|
|
@for i in $(SUBDIRS); do if test -d $$i; then make -C $$i clean; fi; done;
|
|
|
|
export:
|
|
@for i in $(SUBDIRS); do if test -d $$i; then make -C $$i export; fi; done;
|