aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/ds/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/ds/makefile')
-rw-r--r--backends/platform/ds/makefile66
1 files changed, 66 insertions, 0 deletions
diff --git a/backends/platform/ds/makefile b/backends/platform/ds/makefile
new file mode 100644
index 0000000000..58d6fd4c02
--- /dev/null
+++ b/backends/platform/ds/makefile
@@ -0,0 +1,66 @@
+#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;
+semiclean:
+ @for i in $(SUBDIRS); do if test -d $$i; then $(MAKE) -C $$i semiclean; fi; done;
+
+export:
+ @for i in $(SUBDIRS); do if test -d $$i; then $(MAKE) -C $$i export; fi; done;
+
+allbuilds:
+ $(MAKE) semiclean
+ $(MAKE) all SCUMM_BUILD=a
+ $(MAKE) semiclean
+ $(MAKE) all SCUMM_BUILD=b
+ $(MAKE) semiclean
+ $(MAKE) all SCUMM_BUILD=c
+ $(MAKE) semiclean
+ $(MAKE) all SCUMM_BUILD=d
+ $(MAKE) semiclean
+ $(MAKE) all SCUMM_BUILD=e
+ $(MAKE) semiclean
+ $(MAKE) all SCUMM_BUILD=f
+ $(MAKE) semiclean
+ $(MAKE) all SCUMM_BUILD=g
+ $(MAKE) semiclean
+ $(MAKE) all SCUMM_BUILD=h
+ $(MAKE) semiclean
+ $(MAKE) all SCUMM_BUILD=i
+ $(MAKE) semiclean
+ $(MAKE) all SCUMM_BUILD=k
+
+allbuildssafe:
+ $(MAKE) clean SCUMM_BUILD=a
+ $(MAKE) all SCUMM_BUILD=a
+ $(MAKE) clean SCUMM_BUILD=b
+ $(MAKE) all SCUMM_BUILD=b
+ $(MAKE) clean SCUMM_BUILD=c
+ $(MAKE) all SCUMM_BUILD=c
+ $(MAKE) clean SCUMM_BUILD=d
+ $(MAKE) all SCUMM_BUILD=d
+ $(MAKE) clean SCUMM_BUILD=e
+ $(MAKE) all SCUMM_BUILD=e
+ $(MAKE) clean SCUMM_BUILD=f
+ $(MAKE) all SCUMM_BUILD=f
+ $(MAKE) clean SCUMM_BUILD=g
+ $(MAKE) all SCUMM_BUILD=g
+ $(MAKE) clean SCUMM_BUILD=h
+ $(MAKE) all SCUMM_BUILD=h
+ $(MAKE) clean SCUMM_BUILD=i
+ $(MAKE) all SCUMM_BUILD=i
+ $(MAKE) clean SCUMM_BUILD=k
+ $(MAKE) all SCUMM_BUILD=k