Replaced whole bunch for Makefiles with a single generic Makefile.
- No complex shell logic. - "Source file shadowing" for all targets via vpath. - Dependency handling. - True incremental build. - Don't write into source directories. - Easy cleanup by just removing 'wrk'.
This commit is contained in:
@@ -1,141 +0,0 @@
|
||||
#
|
||||
# makefile for CC65 runtime library
|
||||
#
|
||||
|
||||
.SUFFIXES: .o .s .c
|
||||
|
||||
#--------------------------------------------------------------------------
|
||||
# Programs and flags
|
||||
|
||||
SYS = atmos
|
||||
|
||||
AS = ../../src/ca65/ca65
|
||||
CC = ../../src/cc65/cc65
|
||||
CO = ../../src/co65/co65
|
||||
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: %.emd
|
||||
@$(CO) -o $(*)-emd.s --code-label _$(subst -,_,$(*)) $<
|
||||
@$(AS) -o $@ $(AFLAGS) $(*)-emd.s
|
||||
|
||||
%-joy.o: %.joy
|
||||
@$(CO) -o $(*)-joy.s --code-label _$(subst -,_,$(*)) $<
|
||||
@$(AS) -o $@ $(AFLAGS) $(*)-joy.s
|
||||
|
||||
%-mou.o: %.mou
|
||||
@$(CO) -o $(*)-mou.s --code-label _$(subst -,_,$(*)) $<
|
||||
@$(AS) -o $@ $(AFLAGS) $(*)-mou.s
|
||||
|
||||
%-ser.o: %.ser
|
||||
@$(CO) -o $(*)-ser.s --code-label _$(subst -,_,$(*)) $<
|
||||
@$(AS) -o $@ $(AFLAGS) $(*)-ser.s
|
||||
|
||||
%-tgi.o: %.tgi
|
||||
@$(CO) -o $(*)-tgi.s --code-label _$(subst -,_,$(*)) $<
|
||||
@$(AS) -o $@ $(AFLAGS) $(*)-tgi.s
|
||||
|
||||
%.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 \
|
||||
irq.o \
|
||||
joy_stat_stddrv.o \
|
||||
joy_stddrv.o \
|
||||
kbhit.o \
|
||||
mainargs.o \
|
||||
oserrlist.o \
|
||||
oserror.o \
|
||||
revers.o \
|
||||
store_filename.o \
|
||||
systime.o \
|
||||
sysuname.o \
|
||||
tgi_colors.o \
|
||||
tgi_stat_stddrv.o \
|
||||
tgi_stddrv.o \
|
||||
toascii.o \
|
||||
wherex.o \
|
||||
wherey.o \
|
||||
write.o \
|
||||
$(EMDS:.emd=-emd.o) \
|
||||
$(JOYS:.joy=-joy.o) \
|
||||
$(MOUS:.mou=-mou.o) \
|
||||
$(SERS:.ser=-ser.o) \
|
||||
$(TGIS:.tgi=-tgi.o)
|
||||
|
||||
|
||||
#--------------------------------------------------------------------------
|
||||
# Drivers
|
||||
|
||||
EMDS =
|
||||
|
||||
JOYS = atmos-pase.joy
|
||||
|
||||
MOUS =
|
||||
|
||||
SERS = atmos-acia.ser
|
||||
|
||||
TGIS = atmos-240-200-2.tgi atmos-228-200-3.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) $(EMDS:.emd=-emd.s) \
|
||||
$(JOYS:.joy=.o) $(JOYS:.joy=-joy.s) \
|
||||
$(MOUS:.mou=.o) $(MOUS:.mou=-mou.s) \
|
||||
$(SERS:.ser=.o) $(SERS:.ser=-ser.s) \
|
||||
$(TGIS:.tgi=.o) $(TGIS:.tgi=-tgi.s)
|
||||
|
||||
zap: clean
|
||||
@$(RM) $(EMDS) $(JOYS) $(MOUS) $(SERS) $(TGIS)
|
||||
Reference in New Issue
Block a user