mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
5c5d01d84a
in the distribution. Added --forget-inc-paths to the command line of the assembler in the Makefiles, because the assembler does now have builtin paths and will find include files from an installation first. Hopefully fixed any problems that arose from the two changes. git-svn-id: svn://svn.cc65.org/cc65/trunk@4223 b7a2c559-68d2-44c3-8de9-860c34a00d81
104 lines
2.2 KiB
Makefile
104 lines
2.2 KiB
Makefile
#
|
|
# makefile for CC65 runtime library
|
|
#
|
|
|
|
.SUFFIXES: .o .s .c
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Programs and flags
|
|
|
|
SYS = c128
|
|
|
|
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) -t module -o $@ $^
|
|
|
|
%.joy: %.o ../runtime/zeropage.o
|
|
@$(LD) -t module -o $@ $^
|
|
|
|
%.mou: %.o ../runtime/zeropage.o
|
|
@$(LD) -t module -o $@ $^
|
|
|
|
%.ser: %.o ../runtime/zeropage.o
|
|
@$(LD) -t module -o $@ $^
|
|
|
|
%.tgi: %.o ../runtime/zeropage.o
|
|
@$(LD) -t module -o $@ $^
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Object files
|
|
|
|
OBJS = _scrsize.o \
|
|
break.o \
|
|
c64mode.o \
|
|
cgetc.o \
|
|
clrscr.o \
|
|
conio.o \
|
|
crt0.o \
|
|
color.o \
|
|
cputc.o \
|
|
fast.o \
|
|
get_tv.o \
|
|
joy_stddrv.o \
|
|
kbhit.o \
|
|
kernal.o \
|
|
mainargs.o \
|
|
mcbdefault.o \
|
|
mouse_stddrv.o \
|
|
randomize.o \
|
|
revers.o \
|
|
slow.o \
|
|
systime.o \
|
|
sysuname.o \
|
|
tgi_mode_table.o \
|
|
toggle_videomode.o \
|
|
videomode.o
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Drivers
|
|
|
|
EMDS = c128-georam.emd c128-ram.emd c128-ramcart.emd c128-reu.emd c128-vdc.emd
|
|
|
|
JOYS = c128-ptvjoy.joy c128-stdjoy.joy
|
|
|
|
MOUS = c128-1351.mou c128-joymouse.mou c128-potmouse.mou
|
|
|
|
SERS = c128-swlink.ser
|
|
|
|
TGIS = c128-640-200-2.tgi c128-640-480-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)
|
|
|
|
|