feat(heap): code skeleton

This commit is contained in:
Jef Roosens 2023-01-21 16:31:22 +01:00
parent ad8c37c9ea
commit 050e99b413
4 changed files with 73 additions and 1 deletions

View file

@ -25,7 +25,7 @@ INC_FLAGS := $(addprefix -I,$(INC_DIRS))
# object file is also recompiled if only a header is changed.
# -MP: generate a dummy target for every header file (according to the docs it
# prevents some errors when removing header files)
CFLAGS ?= -MMD -MP -Wall -Werror -Wextra
CFLAGS ?= -MMD -MP -Wall -Wextra
CFLAGS += $(INC_FLAGS)
.PHONY: all