summaryrefslogtreecommitdiff
path: root/demo/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'demo/GNUmakefile')
-rw-r--r--demo/GNUmakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/demo/GNUmakefile b/demo/GNUmakefile
index 18d3083..076b19f 100644
--- a/demo/GNUmakefile
+++ b/demo/GNUmakefile
@@ -5,7 +5,7 @@
# TOOLS
AS := arm-none-eabi-as
-CC := clang -target arm-none-eabi
+CC := clang --target=arm-none-eabi
#CC := arm-none-eabi-gcc
LD := arm-none-eabi-ld
OBJCOPY := arm-none-eabi-objcopy
@@ -29,13 +29,13 @@ OBJS := \
ROMHDR := hdr.o
-BIN := demo.gba
+IMG := demo.gba
# TARGETS
.PHONY: clean purge
-$(BIN): $(ROMHDR) $(OBJS)
+$(IMG): $(ROMHDR) $(OBJS)
$(LD) -L../agbx -Tldscript -odemo.elf -znoexecstack $(^) -lagbx
$(OBJCOPY) -Obinary demo.elf $(@)
agbsum -psi$(@)
@@ -44,5 +44,5 @@ clean:
$(RM) $(OBJS) $(ROMHDR) demo.elf
purge: clean
- $(RM) $(BIN)
+ $(RM) $(IMG)