mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 21:32:19 +00:00
293c279416
git-svn-id: svn://svn.cc65.org/cc65/trunk@5660 b7a2c559-68d2-44c3-8de9-860c34a00d81
106 lines
2.2 KiB
Makefile
106 lines
2.2 KiB
Makefile
#
|
|
# makefile for CC65 runtime library
|
|
#
|
|
|
|
.SUFFIXES: .o .s .c
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Programs and flags
|
|
|
|
SYS = atmos
|
|
|
|
AS = ../../src/ca65/ca65
|
|
CC = ../../src/cc65/cc65
|
|
LD = ../../src/ld65/ld65
|
|
|
|
AFLAGS = -t $(SYS) --forget-inc-paths -I../../asminc
|
|
CFLAGS = -Osir -g -T -t $(SYS) --forget-inc-paths -I . -I ../../include
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Rules
|
|
|
|
%.o: %.c
|
|
@$(CC) $(CFLAGS) $<
|
|
@$(AS) -o $@ $(AFLAGS) $(*).s
|
|
|
|
%.o: %.s
|
|
@$(AS) -g -o $@ $(AFLAGS) $<
|
|
|
|
%.emd: %.o ../runtime/zeropage.o
|
|
@$(LD) -o $@ -t module $^
|
|
|
|
%.joy: %.o ../runtime/zeropage.o
|
|
@$(LD) -o $@ -t module $^
|
|
|
|
%.mou: %.o ../runtime/zeropage.o
|
|
@$(LD) -o $@ -t module $^
|
|
|
|
%.ser: %.o ../runtime/zeropage.o
|
|
@$(LD) -o $@ -t module $^
|
|
|
|
%.tgi: %.o ../runtime/zeropage.o
|
|
@$(LD) -o $@ -t module $^
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Object files
|
|
|
|
OBJS = _scrsize.o \
|
|
atmos_load.o \
|
|
atmos_save.o \
|
|
cclear.o \
|
|
cgetc.o \
|
|
chline.o \
|
|
clock.o \
|
|
clrscr.o \
|
|
color.o \
|
|
cputc.o \
|
|
crt0.o \
|
|
ctype.o \
|
|
cvline.o \
|
|
gotox.o \
|
|
gotoxy.o \
|
|
gotoy.o \
|
|
kbhit.o \
|
|
mainargs.o \
|
|
oserrlist.o \
|
|
oserror.o \
|
|
revers.o \
|
|
store_filename.o\
|
|
systime.o \
|
|
sysuname.o \
|
|
tgi_colors.o \
|
|
wherex.o \
|
|
wherey.o \
|
|
write.o
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Drivers
|
|
|
|
EMDS =
|
|
|
|
JOYS = atmos-pase.joy
|
|
|
|
MOUS =
|
|
|
|
SERS = atmos-acia.ser
|
|
|
|
TGIS = atmos-240-200-2.tgi
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Targets
|
|
|
|
.PHONY: all clean zap
|
|
|
|
all: $(OBJS) $(EMDS) $(JOYS) $(MOUS) $(SERS) $(TGIS)
|
|
|
|
../runtime/zeropage.o:
|
|
$(MAKE) -C $(dir $@) $(notdir $@)
|
|
|
|
clean:
|
|
@$(RM) $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(MOUS:.mou=.o) $(SERS:.ser=.o) $(TGIS:.tgi=.o)
|
|
|
|
zap: clean
|
|
@$(RM) $(EMDS) $(JOYS) $(MOUS) $(SERS) $(TGIS)
|
|
|
|
|