1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-08 20:31:31 +00:00

The vic20 target had the wrong CFLAGS

git-svn-id: svn://svn.cc65.org/cc65/trunk@1381 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-08-08 12:16:52 +00:00
parent 0cad140b4d
commit 56fd8532ed

View File

@ -34,7 +34,7 @@ all:
#-----------------------------------------------------------------------------
# Apple ][
apple2lib:
for i in apple2 common runtime conio dbg; do \
CC=$(CC) \
@ -88,7 +88,7 @@ vic20lib:
CC=$(CC) \
AS=$(AS) \
AFLAGS="-t vic20 -I../../asminc" \
CFLAGS="-Osir -g -T -t c64 -I../../include" \
CFLAGS="-Osir -g -T -t vic20 -I../../include" \
$(MAKE) -C $$i || exit 1; \
done
mv vic20/crt0.o vic20.o