.SUFFIXES: .o .s .c
+
+#--------------------------------------------------------------------------
+# Rules
+
%.o: %.c
@$(CC) $(CFLAGS) $<
@$(AS) -o $@ $(AFLAGS) $(*).s
%.tgi: %.o ../runtime/zeropage.o
@$(LD) -t module -o $@ $^
+#--------------------------------------------------------------------------
+# Object files
+
OBJS = _scrsize.o \
break.o \
crt0.o \
rs232.o \
tgi_mode_table.o
+#--------------------------------------------------------------------------
+# Drivers
+
TGIS = c64-320-200-2.tgi
EMDS = c64-georam.emd c64-reu.emd
../runtime/zeropage.o:
$(MAKE) -C $(dir $@) $(notdir $@)
-
clean:
@rm -f $(OBJS) $(EMDS:.emd=.o) $(TGIS:.tgi=.o)