diff options
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) |