diff options
author | Ian C <ianc@noddybox.co.uk> | 2024-11-30 07:53:44 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2024-11-30 07:53:44 +0000 |
commit | 2e82a0eb6e13f209a2a4492dc348c9d4f8509753 (patch) | |
tree | 08cc69b152f6413f3bfb8884bafe2003ff9006fd /src/Makefile | |
parent | c086f055ef676ca96e948340386cb04725916db3 (diff) |
Removed CBM TAP output. Couldn't find enough documentation and we already
have PRG output for those platforms, plut T64.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile index f80f535..0d06ee0 100644 --- a/src/Makefile +++ b/src/Makefile @@ -52,8 +52,7 @@ SOURCE = casm.c \ nesout.c \ cpcout.c \ prgout.c \ - hexout.c \ - cbmtapout.c + hexout.c OBJECTS = casm.o \ expr.o \ @@ -83,8 +82,7 @@ OBJECTS = casm.o \ nesout.o \ cpcout.o \ prgout.o \ - hexout.o \ - cbmtapout.o + hexout.o $(TARGET): $(OBJECTS) $(CC) $(CLAGS) -o $(TARGET) $(OBJECTS) |