From a75bdd0e167140eeb4afb091c9dedd84474c8531 Mon Sep 17 00:00:00 2001 From: Dylan Date: Mon, 4 May 2026 18:36:15 +1200 Subject: feat: Added a writer class Also moved both the reader and writer class to the same files, named files.{cpp,h} --- GNUmakefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'GNUmakefile') diff --git a/GNUmakefile b/GNUmakefile index 0353f28..819d70d 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -58,9 +58,10 @@ install: $(LIB) test: $(TEST) -$(OBJS_DIR)/reader.o: $(SOURCE_DIR)/debug.h +# $(OBJS_DIR)/reader.o: $(SOURCE_DIR)/debug.h +$(OBJS_DIR)/files.o: $(OBJS_DIR)/image.o: -$(OBJS_DIR)/PNGImage.o: $(SOURCE_DIR)/debug.h $(SOURCE_DIR)/image.h -$(OBJS_DIR)/BMPImage.o: $(SOURCE_DIR)/image.h +$(OBJS_DIR)/PNGImage.o: $(SOURCE_DIR)/debug.h $(SOURCE_DIR)/image.h $(SOURCE_DIR)/files.h +$(OBJS_DIR)/BMPImage.o: $(SOURCE_DIR)/image.h $(SOURCE_DIR)/files.h $(OBJS_DIR)/zlib.o: $(SOURCE_DIR)/HashTable.h $(OBJS_DIR)/HashTable.o: -- cgit v1.2.3