From 367deac64834ba0264e4240f32a4a11395114e0f Mon Sep 17 00:00:00 2001 From: Ian C Date: Thu, 18 Jun 2026 17:59:27 +0100 Subject: Made font not defined in header. Added makedepend. --- src/Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index e50c10d..7cb459a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -38,6 +38,7 @@ SOURCE = main.c \ memmenu.c \ util.c \ exit.c \ + font.c \ expr.c \ z80.c \ z80_decode.c \ @@ -51,6 +52,7 @@ OBJECTS = main.o \ memmenu.o \ util.o \ exit.o \ + font.o \ expr.o \ z80.o \ z80_decode.o \ @@ -64,5 +66,10 @@ LIBS = `sdl2-config --libs` $(TARGET): $(OBJECTS) $(Z80LIB) $(CC) $(CFLAGS) -o $(TARGET) $(OBJECTS) $(LIBS) +depend: + makedepend $(SOURCE) + clean: - rm -f $(TARGET) $(TARGET).exe $(OBJECTS) core + rm -f $(TARGET) $(TARGET).exe $(OBJECTS) core Makefile.bak + +# DO NOT DELETE THIS LINE -- make depend depends on it. -- cgit v1.3