1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-23 04:30:10 +00:00

Added lynxlib target

git-svn-id: svn://svn.cc65.org/cc65/trunk@3221 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-10-08 18:11:29 +00:00
parent 4d884ec479
commit fed048bf8a

View File

@ -23,6 +23,7 @@ ALLTARGETS = apple2 \
cbm510 \
cbm610 \
geos \
lynx \
nes \
pet \
plus4 \
@ -249,6 +250,21 @@ geoslib:
cp geos/devel/*.joy .
cp geos/devel/geos-tgi.tgi geos-tgi.tgi
#-----------------------------------------------------------------------------
# Lynx
lynxlib:
for i in lynx common conio runtime em joystick tgi zlib; do \
AS=$(AS) \
CC=$(CC) \
LD=$(LD) \
AFLAGS="-t lynx -I../../asminc" \
CFLAGS="-Osir -g -T -t lynx --forget-inc-paths -I. -I../../include" \
$(MAKE) -C $$i || exit 1; \
$(AR) a lynx.lib $$i/*.o;\
done
mv lynx/crt0.o lynx.o
#-----------------------------------------------------------------------------
# NES