diff options
author | John van Groningen | 2016-03-11 10:45:12 +0000 |
---|---|---|
committer | John van Groningen | 2016-03-11 10:45:12 +0000 |
commit | 28bc807ebe373fec0991ef0219ac1413f8375ac2 (patch) | |
tree | dc9a7969c8909dba77c2c319abc2f7db16019f6e /Makefile.linux_arm | |
parent | no extra _ for c labels on ARM (also if LINUX_ELF is undefined) (diff) |
move code_ccall for the ARM to new file cgarmc.c
Diffstat (limited to 'Makefile.linux_arm')
-rw-r--r-- | Makefile.linux_arm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.linux_arm b/Makefile.linux_arm index 5b32afb..bec90c8 100644 --- a/Makefile.linux_arm +++ b/Makefile.linux_arm @@ -8,6 +8,8 @@ OBJECTS = cg.o cgcalc.o cgcode.o cginput.o cginstructions.o \ cg: $(OBJECTS)
gcc -s $(OBJECTS) -o $@
+cginstructions.o : cgarmc.c
+
clean:
rm $(OBJECTS)
|