mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 15:05:14 +00:00
b3ed17f575
Note: These drivers are currently untested because I didn't realize that using the drivers would need file routines, which are not available right now. So in fact the drivers are not only untested, they are also unusable on the target platforms, because they cannot be loaded. git-svn-id: svn://svn.cc65.org/cc65/trunk@1732 b7a2c559-68d2-44c3-8de9-860c34a00d81
73 lines
1.2 KiB
Makefile
73 lines
1.2 KiB
Makefile
#
|
|
# makefile for CC65 runtime library
|
|
#
|
|
|
|
.SUFFIXES: .o .s .c
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Rules
|
|
|
|
%.o: %.c
|
|
@$(CC) $(CFLAGS) $<
|
|
@$(AS) -o $@ $(AFLAGS) $(*).s
|
|
|
|
%.o: %.s
|
|
@$(AS) -g -o $@ $(AFLAGS) $<
|
|
|
|
%.emd: %.o ../runtime/zeropage.o
|
|
@$(LD) -t module -o $@ $^
|
|
|
|
%.tgi: %.o ../runtime/zeropage.o
|
|
@$(LD) -t module -o $@ $^
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Object files
|
|
|
|
%.o: %.c
|
|
@$(CC) $(CFLAGS) $<
|
|
@$(AS) -o $@ $(AFLAGS) $(*).s
|
|
|
|
%.o: %.s
|
|
@$(AS) -g -o $@ $(AFLAGS) $<
|
|
|
|
OBJS = _scrsize.o \
|
|
banking.o \
|
|
break.o \
|
|
cgetc.o \
|
|
clrscr.o \
|
|
color.o \
|
|
conio.o \
|
|
cputc.o \
|
|
crt0.o \
|
|
kbhit.o \
|
|
kirq.o \
|
|
kplot.o \
|
|
kscnkey.o \
|
|
kudtim.o \
|
|
mouse.o \
|
|
peeksys.o \
|
|
pokesys.o \
|
|
randomize.o \
|
|
readjoy.o \
|
|
rs232.o \
|
|
tgi_mode_table.o
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Drivers
|
|
|
|
TGIS =
|
|
|
|
EMDS = cbm510-ram.emd
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Targets
|
|
|
|
all: $(OBJS) $(EMDS) $(TGIS)
|
|
|
|
../runtime/zeropage.o:
|
|
$(MAKE) -C $(dir $@) $(notdir $@)
|
|
|
|
clean:
|
|
@rm -f $(OBJS) $(EMDS:.emd=.o) $(TGIS:.tgi=.o)
|
|
|