Remove debug from Makefile

This commit is contained in:
andrew 2020-11-13 11:38:43 +00:00
parent a8d54818d2
commit 1a8dfe6983

View File

@ -37,9 +37,6 @@ COMPILE = $(CC) $(CFLAGS) $(INC) $(DEFINES)
SRCS := $(shell find $(SRC_DIR) -type f -name '*.c' -not -path '*/\.*') SRCS := $(shell find $(SRC_DIR) -type f -name '*.c' -not -path '*/\.*')
OBJECTS := $(patsubst $(SRC_DIR)%,$(BUILD_DIR)/%,$(SRCS:.$(SRC_EXT)=.$(OBJ_EXT))) OBJECTS := $(patsubst $(SRC_DIR)%,$(BUILD_DIR)/%,$(SRCS:.$(SRC_EXT)=.$(OBJ_EXT)))
$(info SRCS is $(SRCS))
$(info OBJECTS is $(OBJECTS))
all: default all: default
$(BUILD_DIR)/%.$(OBJ_EXT): $(SRC_DIR)/%.$(SRC_EXT) $(BUILD_DIR)/%.$(OBJ_EXT): $(SRC_DIR)/%.$(SRC_EXT)