From c086f055ef676ca96e948340386cb04725916db3 Mon Sep 17 00:00:00 2001 From: Ian C Date: Sun, 4 Aug 2024 18:23:47 +0100 Subject: Started adding CBM tape file support. Still the bulk of it to do, but framework is there. --- src/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index 0d06ee0..f80f535 100644 --- a/src/Makefile +++ b/src/Makefile @@ -52,7 +52,8 @@ SOURCE = casm.c \ nesout.c \ cpcout.c \ prgout.c \ - hexout.c + hexout.c \ + cbmtapout.c OBJECTS = casm.o \ expr.o \ @@ -82,7 +83,8 @@ OBJECTS = casm.o \ nesout.o \ cpcout.o \ prgout.o \ - hexout.o + hexout.o \ + cbmtapout.o $(TARGET): $(OBJECTS) $(CC) $(CLAGS) -o $(TARGET) $(OBJECTS) -- cgit v1.2.3