aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..8c61b36
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,37 @@
+CC=arm-none-eabi-gcc
+OBJCOPY=arm-none-eabi-objcopy
+CFLAGS=-Wall -fno-diagnostics-color -c
+ARCH=-mthumb -mthumb-interwork
+SPECS=-specs=gba.specs
+O=o
+BIN=$(HOME)/bin
+
+TARG=adventure
+OFILES=\
+ main.$O\
+
+HFILES=\
+ dat.h\
+ regs.h\
+
+.PHONY: all install uninstall clean
+all: $(TARG)
+
+%.$O: %.c
+ $(CC) $(ARCH) $(CFLAGS) $<
+
+$(OFILES): $(HFILES)
+
+$(TARG): $(OFILES)
+ $(CC) $(SPECS) $(ARCH) -o $@ $< $(LIBS) $(LDFLAGS)
+ $(OBJCOPY) -O binary $@ $@.gba
+ gbafix $@.gba
+
+install: $(TARG)
+ cp $(TARG) $(BIN)/
+
+uninstall:
+ rm -f $(BIN)/$(TARG)
+
+clean:
+ rm $(OFILES) $(TARG) *.gba