mirror of
https://github.com/cc65/cc65.git
synced 2025-01-21 00:31:53 +00:00
129d3bf872
- According to the "Hitchhiker's Guide To GEOS" GetSerialNumber returns a string on Apple GEOS (in contrast to a number on CBM GEOS). Given both facts and that the API is presumably not important at all it seems reasonable to just go without it on Apple GEOS. git-svn-id: svn://svn.cc65.org/cc65/trunk@5503 b7a2c559-68d2-44c3-8de9-860c34a00d81
24 lines
394 B
Makefile
24 lines
394 B
Makefile
#
|
|
# makefile for CC65 runtime library
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Object files
|
|
|
|
C_OBJS += systime.o
|
|
|
|
S_OBJS += callroutine.o \
|
|
crt0.o \
|
|
enterdesktop.o \
|
|
extzp.o \
|
|
firstinit.o \
|
|
getrandom.o \
|
|
mainargs.o \
|
|
mainloop.o \
|
|
oserrlist.o \
|
|
oserror.o \
|
|
panic.o \
|
|
randomize.o \
|
|
setoserror.o \
|
|
sysuname.o
|