mirror of
https://github.com/Museum-of-Art-and-Digital-Entertainment/macross.git
synced 2024-11-21 20:31:18 +00:00
Don't define BYTESWAPPED, so we output correct little endian for 6502
BYTESWAPPED was defined because macross targeted SunOS on SPARC.
This commit is contained in:
parent
41abf82cae
commit
827cd91ead
2
Makefile
2
Makefile
@ -103,7 +103,7 @@ emitBranch.o: emitBranch_$(PROC).c $(HEADERS)
|
||||
mv emitBranch_$(PROC).o emitBranch.o
|
||||
|
||||
emitStuff.o: emitStuff.c $(HEADERS)
|
||||
cc $(CFLAGS) -c -g -DBYTESWAPPED -DTARGET_CPU=CPU_$(PROC) emitStuff.c
|
||||
cc $(CFLAGS) -c -g -DTARGET_CPU=CPU_$(PROC) emitStuff.c
|
||||
|
||||
encode.o: encode.c $(HEADERS)
|
||||
|
||||
|
@ -101,7 +101,7 @@ emitBranch.o: emitBranch_$(PROC).c $(HEADERS)
|
||||
mv emitBranch_$(PROC).o emitBranch.o
|
||||
|
||||
emitStuff.o: emitStuff.c $(HEADERS)
|
||||
cc -c -g -DBYTESWAPPED -DTARGET_CPU=CPU_$(PROC) emitStuff.c
|
||||
cc -c -g -DTARGET_CPU=CPU_$(PROC) emitStuff.c
|
||||
|
||||
errorStuff.o: errorStuff.c $(HEADERS)
|
||||
|
||||
|
@ -101,7 +101,7 @@ emitBranch.o: emitBranch_$(PROC).c $(HEADERS)
|
||||
mv emitBranch_$(PROC).o emitBranch.o
|
||||
|
||||
emitStuff.o: emitStuff.c $(HEADERS)
|
||||
cc -c -g -DBYTESWAPPED -DTARGET_CPU=CPU_$(PROC) emitStuff.c
|
||||
cc -c -g -DTARGET_CPU=CPU_$(PROC) emitStuff.c
|
||||
|
||||
errorStuff.o: errorStuff.c $(HEADERS)
|
||||
|
||||
|
@ -102,7 +102,7 @@ emitBranch.o: emitBranch_$(PROC).c $(HEADERS)
|
||||
mv emitBranch_$(PROC).o emitBranch.o
|
||||
|
||||
emitStuff.o: emitStuff.c $(HEADERS)
|
||||
cc -c -O -DBYTESWAPPED -DTARGET_CPU=CPU_$(PROC) emitStuff.c
|
||||
cc -c -O -DTARGET_CPU=CPU_$(PROC) emitStuff.c
|
||||
|
||||
encode.o: encode.c $(HEADERS)
|
||||
|
||||
|
@ -101,7 +101,7 @@ emitBranch.o: emitBranch_$(PROC).c $(HEADERS)
|
||||
mv emitBranch_$(PROC).o emitBranch.o
|
||||
|
||||
emitStuff.o: emitStuff.c $(HEADERS)
|
||||
cc -O -c -DBYTESWAPPED -DTARGET_CPU=CPU_$(PROC) emitStuff.c
|
||||
cc -O -c -DTARGET_CPU=CPU_$(PROC) emitStuff.c
|
||||
|
||||
errorStuff.o: errorStuff.c $(HEADERS)
|
||||
|
||||
|
@ -101,7 +101,7 @@ emitBranch.o: emitBranch_$(PROC).c $(HEADERS)
|
||||
mv emitBranch_$(PROC).o emitBranch.o
|
||||
|
||||
emitStuff.o: emitStuff.c $(HEADERS)
|
||||
cc -O -c -DBYTESWAPPED -DTARGET_CPU=CPU_$(PROC) emitStuff.c
|
||||
cc -O -c -DTARGET_CPU=CPU_$(PROC) emitStuff.c
|
||||
|
||||
errorStuff.o: errorStuff.c $(HEADERS)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user