mirror of
https://github.com/Michaelangel007/c2t.git
synced 2024-11-26 06:49:16 +00:00
patch to c2t-96h to default to -8 for no opt on .dsk/.po, added windows cross makefile
This commit is contained in:
parent
542686ab6e
commit
dd10e6ce06
@ -465,6 +465,7 @@ int main(int argc, char **argv)
|
||||
|
||||
if(dsk) {
|
||||
fast=autoload=cd=tape=0;
|
||||
k8=1;
|
||||
model=2;
|
||||
|
||||
if(numseg != 5) {
|
||||
|
27
windows/Makefile
Normal file
27
windows/Makefile
Normal file
@ -0,0 +1,27 @@
|
||||
|
||||
|
||||
CC = /usr/local/gcc-4.8.0-qt-4.8.4-for-mingw32/win32-gcc/bin/i586-mingw32-gcc
|
||||
|
||||
all: c2t.exe c2t-96h.exe
|
||||
|
||||
clean:
|
||||
rm -f c2t.exe c2t-96h.exe c2t.c c2t-96h.c c2t.h fake6502.h
|
||||
|
||||
c2t.exe: c2t.c c2t.h fake6502.h miniz.h
|
||||
$(CC) -Wall -Wno-unused-value -Wno-unused-function -O3 -o c2t.exe c2t.c
|
||||
|
||||
c2t-96h.exe: c2t-96h.c c2t.h fake6502.h miniz.h
|
||||
$(CC) -Wall -Wno-unused-value -Wno-unused-function -O3 -o c2t-96h.exe c2t-96h.c
|
||||
|
||||
c2t.c: ../c2t.c
|
||||
cp ../c2t.c .
|
||||
|
||||
c2t-96h.c: ../c2t-96h.c
|
||||
cp ../c2t-96h.c .
|
||||
|
||||
c2t.h: ../c2t.h
|
||||
cp ../c2t.h .
|
||||
|
||||
fake6502.h: ../fake6502.h
|
||||
cp ../fake6502.h .
|
||||
|
Binary file not shown.
BIN
windows/c2t.exe
BIN
windows/c2t.exe
Binary file not shown.
Loading…
Reference in New Issue
Block a user