summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index 8ed3914..8deb3e5 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -22,6 +22,10 @@ TARGET=czx81
CURSES=-lncurses
OBJS= czx81.o \
+ z80.o \
+ z80_decode.o \
+ z80_dis.o \
+ stream.o \
zx81rom.o
$(TARGET): $(OBJS)
@@ -31,4 +35,8 @@ clean:
rm -f $(TARGET) $(OBJS) core
czx81.o: czx81.c wide_curses.h
+stream.o: stream.c stream.h
+z80.o: z80.c z80.h z80_config.h z80_private.h stream.h
+z80_decode.o: z80_decode.c z80.h z80_config.h z80_private.h
+z80_dis.o: z80_dis.c z80_config.h z80.h z80_private.h
zx81rom.o: zx81rom.c zx81rom.h