From: cuz Date: Mon, 2 Dec 2002 06:15:03 +0000 (+0000) Subject: Cosmetic changes X-Git-Tag: V2.12.0~1960 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7583f2b0cf065e43eef1f60df2b14334e917bb74;p=cc65 Cosmetic changes git-svn-id: svn://svn.cc65.org/cc65/trunk@1694 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/c64/Makefile b/libsrc/c64/Makefile index 1d96f03a1..a1de721b0 100644 --- a/libsrc/c64/Makefile +++ b/libsrc/c64/Makefile @@ -4,6 +4,10 @@ .SUFFIXES: .o .s .c + +#-------------------------------------------------------------------------- +# Rules + %.o: %.c @$(CC) $(CFLAGS) $< @$(AS) -o $@ $(AFLAGS) $(*).s @@ -17,6 +21,9 @@ %.tgi: %.o ../runtime/zeropage.o @$(LD) -t module -o $@ $^ +#-------------------------------------------------------------------------- +# Object files + OBJS = _scrsize.o \ break.o \ crt0.o \ @@ -33,6 +40,9 @@ OBJS = _scrsize.o \ rs232.o \ tgi_mode_table.o +#-------------------------------------------------------------------------- +# Drivers + TGIS = c64-320-200-2.tgi EMDS = c64-georam.emd c64-reu.emd @@ -45,7 +55,6 @@ all: $(OBJS) $(EMDS) $(TGIS) ../runtime/zeropage.o: $(MAKE) -C $(dir $@) $(notdir $@) - clean: @rm -f $(OBJS) $(EMDS:.emd=.o) $(TGIS:.tgi=.o)