diff options
| author | Dylan <boss@tehbox.org> | 2026-05-04 18:36:15 +1200 |
|---|---|---|
| committer | Dylan <boss@tehbox.org> | 2026-05-04 18:36:15 +1200 |
| commit | a75bdd0e167140eeb4afb091c9dedd84474c8531 (patch) | |
| tree | 9c94262edc1c1eea4bd4977f76c7cd8ec6a43da1 /GNUmakefile | |
| parent | 500151be4794923cee6034c26881effeb1bb056d (diff) | |
| download | tehimage-a75bdd0e167140eeb4afb091c9dedd84474c8531.tar.gz tehimage-a75bdd0e167140eeb4afb091c9dedd84474c8531.zip | |
feat: Added a writer class
Also moved both the reader and writer class to the same files, named
files.{cpp,h}
Diffstat (limited to 'GNUmakefile')
| -rw-r--r-- | GNUmakefile | 7 |
1 files changed, 4 insertions, 3 deletions
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: |
