1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-23 04:30:10 +00:00

Cosmetic changes

git-svn-id: svn://svn.cc65.org/cc65/trunk@1694 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-12-02 06:15:03 +00:00
parent 508af1ca21
commit 7583f2b0cf

View File

@ -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)