diff options
author | Ian C <ianc@noddybox.co.uk> | 2024-08-04 18:23:47 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2024-08-04 18:23:47 +0100 |
commit | c086f055ef676ca96e948340386cb04725916db3 (patch) | |
tree | 6a7cda12d663d1027351d6d98c2d98bc0face5b2 /src/Makefile | |
parent | 38f98a4d81042befe65fd84c33eeea806ecc5c86 (diff) |
framework is there.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
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) |