You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
48 lines
1.2 KiB
4 years ago
|
name := ovldec
|
||
|
|
||
|
dir_source := source
|
||
|
dir_build := build
|
||
|
|
||
|
CFLAGS := -O0 -g -Wall -Wextra -std=c17 $(CFLAGS)
|
||
|
|
||
|
CFLAGS += #$(shell pkg-config --cflags ...)
|
||
|
LDLIBS += #$(shell pkg-config --libs ...)
|
||
|
|
||
|
SANIT := -fsanitize=address -fsanitize=pointer-compare -fsanitize=pointer-subtract -fsanitize=leak -fsanitize=undefined
|
||
|
OPTIM := -Os -fdata-sections -ffunction-sections -flto -fuse-linker-plugin -fipa-pta -Wl,--gc-sections -Wl,--print-gc-sections -fgraphite-identity -floop-nest-optimize
|
||
|
|
||
|
rwildcard = $(foreach d, $(wildcard $1*), $(filter $(subst *, %, $2), $d) $(call rwildcard, $d/, $2))
|
||
|
objects := $(patsubst $(dir_source)/%.c, $(dir_build)/%.o, $(call rwildcard, $(dir_source)/, *.c))
|
||
|
|
||
|
.SECONDEXPANSION:
|
||
|
|
||
|
.PHONY: all
|
||
|
all: $(name)
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
rm -rf $(dir_build) $(name)
|
||
|
|
||
|
.PHONY: sanit
|
||
|
sanit: CFLAGS += $(SANIT)
|
||
|
sanit: LDFLAGS += $(SANIT)
|
||
|
sanit: $(name)
|
||
|
|
||
|
.PHONY: optim
|
||
|
optim: CFLAGS += $(OPTIM)
|
||
|
optim: LDFLAGS += $(OPTIM)
|
||
|
optim: $(name)
|
||
|
strip --strip-all --strip-unneeded $(name)
|
||
|
|
||
|
$(name): $(objects)
|
||
|
$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
|
||
|
|
||
|
$(dir_build)/%.o: $(dir_source)/%.c | $$(dir $$@)
|
||
|
$(COMPILE.c) -MMD -MF $(@:.o=.d) $(OUTPUT_OPTION) $<
|
||
|
|
||
|
.PRECIOUS: %/
|
||
|
%/:
|
||
|
mkdir -p $@
|
||
|
|
||
|
-include $(patsubst %.o, %.d, $(objects))
|