From 1a8dfe6983272b7fe20747bf35ff05a498339c9c Mon Sep 17 00:00:00 2001 From: andrew Date: Fri, 13 Nov 2020 11:38:43 +0000 Subject: [PATCH] Remove debug from Makefile --- Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile b/Makefile index 424b5fd..dcc28bf 100644 --- a/Makefile +++ b/Makefile @@ -37,9 +37,6 @@ COMPILE = $(CC) $(CFLAGS) $(INC) $(DEFINES) SRCS := $(shell find $(SRC_DIR) -type f -name '*.c' -not -path '*/\.*') OBJECTS := $(patsubst $(SRC_DIR)%,$(BUILD_DIR)/%,$(SRCS:.$(SRC_EXT)=.$(OBJ_EXT))) -$(info SRCS is $(SRCS)) -$(info OBJECTS is $(OBJECTS)) - all: default $(BUILD_DIR)/%.$(OBJ_EXT): $(SRC_DIR)/%.$(SRC_EXT)