Created
April 12, 2022 07:24
-
-
Save FoxieFlakey/20ffa5107413ea674ed087e24be061a9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SRC_DIR=./src/ | |
OUTPUT=main | |
################################## | |
## Compiler and linker ## | |
################################## | |
LIBS_INCLUDE=-I./libs/hashmap/include | |
SANITIZER_FLAG=-static-libsan -fsanitize-address-use-after-scope -fsanitize=undefined -fsanitize=address | |
CFLAGS=-g -fPIE -fPIC -fvisibility=hidden $(LIBS_INCLUDE) -I./include -O0 -std=c17 -Wall -xc -fblocks $(SANITIZER_FLAG) -I$(SRC_DIR) -D_POSIX_C_SOURCE=200809L | |
LFLAGS=-g -fPIE -fPIC -rdynamic -lBlocksRuntime -lpthread $(SANITIZER_FLAG) -L./libs/ | |
C_COMPILER=clang | |
LINKER=clang | |
################################## | |
SRCS=$(shell find $(SRC_DIR) -regex .+[.]c) | |
OBJS=$(SRCS:.c=.o) | |
.PHONY: link | |
.SUFFIXES: .c .o | |
link: $(OBJS) | |
@echo Linking '$(OUTPUT)' | |
@$(LINKER) $(OBJS) $(LFLAGS) -o $(OUTPUT) | |
.c.o: | |
@echo 'Compiling "$<"' | |
@$(C_COMPILER) $(CFLAGS) -c -o $@ $< | |
clean: | |
rm $(OBJS) $(OUTPUT) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment