From bdb056ee0afdf11f121dbe2bd17c528b57445dd8 Mon Sep 17 00:00:00 2001 From: bumbread Date: Fri, 3 Jun 2022 10:43:21 +1100 Subject: [PATCH] Fix build err --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 80f36ca..d718419 100644 --- a/makefile +++ b/makefile @@ -14,7 +14,7 @@ OBJ_FILES := $(patsubst $(SRC_DIR)/%.c,$(OBJ_DIR)/%.obj,$(SRC_FILES)) ciabatta.lib: $(OBJ_FILES) lib $(LDFLAGS) /out:$@ $^ -$(OBJ_DIR)/%.o: $(SRC_DIR)/%.c +$(OBJ_DIR)/%.obj: $(SRC_DIR)/%.c $(CC) -c -o $@ $< $(CFLAGS) clean: