mirror of
https://github.com/cc65/cc65.git
synced 2025-02-05 20:31:53 +00:00
18 lines
306 B
Makefile
18 lines
306 B
Makefile
|
#
|
||
|
# makefile for CC65 runtime library
|
||
|
#
|
||
|
|
||
|
#--------------------------------------------------------------------------
|
||
|
# Object files
|
||
|
|
||
|
C_OBJS += systime.o
|
||
|
|
||
|
S_OBJS += callroutine.o \
|
||
|
enterdesktop.o \
|
||
|
firstinit.o \
|
||
|
getrandom.o \
|
||
|
getserialnumber.o \
|
||
|
mainloop.o \
|
||
|
panic.o \
|
||
|
sysuname.o
|