From da00f4eb7bf4cdcd463756ce0b73e5a4540bf9ff Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Wed, 1 May 2024 21:58:28 -0400 Subject: Test server --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b3ce19a..5e85957 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,6 @@ SRC_DIR = src BUILD_DIR = build OBJ_DIR = $(BUILD_DIR)/artifacts -INCLUDE_DIR = ./include SRCS = $(notdir $(wildcard $(SRC_DIR)/*.c)) OBJS = $(addsuffix .o, $(basename $(SRCS))) @@ -13,7 +12,7 @@ build: build_dir $(OBJS) $(CC) -lopensmarts -o $(BUILD_DIR)/osm-thermald $(addprefix $(OBJ_DIR)/, $(OBJS)) %.o: $(SRC_DIR)/%.c - $(CC) $(CFLAGS) -c -I$(INCLUDE_DIR) -o $(BUILD_DIR)/artifacts/$@ $< + $(CC) $(CFLAGS) -c -o $(BUILD_DIR)/artifacts/$@ $< build_dir: mkdir -p $(BUILD_DIR) -- cgit v1.2.3