From fa6eb4efa41e72519fc215b4c55768646bcfcde2 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Sun, 1 Jul 2018 03:01:23 +0430 Subject: update --- test/makefile | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 test/makefile (limited to 'test') diff --git a/test/makefile b/test/makefile new file mode 100644 index 0000000..9254ad7 --- /dev/null +++ b/test/makefile @@ -0,0 +1,46 @@ +TARGET= +CC=clang +CC?=clang +CC_FLAGS= +CC_EXTRA?= +CC_FLAGS+=$(CC_EXTRA) +LD_FLAGS= +EXTRA_LD_FLAGS?= +LD_FLAGS+=$(EXTRA_LD_FLAGS) +ADD_SANITIZERS_CC= -g -fsanitize=address -fno-omit-frame-pointer +ADD_SANITIZERS_LD= -g -fsanitize=address +MEM_SANITIZERS_CC= -g -fsanitize=memory -fno-omit-frame-pointer +MEM_SANITIZERS_LD= -g -fsanitize=memory +UB_SANITIZERS_CC= -g -fsanitize=undefined -fno-omit-frame-pointer +UB_SANITIZERS_LD= -g -fsanitize=undefined +BUILD_MODE?=COV_NO_CLANG_1Z + +SRCS=$(wildcard *.c) + +.DEFAULT:all + +.PHONY:all clean help + +all:$(TARGET) + +depend:.depend + +.depend:$(SRCS) + rm -rf .depend + $(CC) -MM $(CC_FLAGS) $^ > ./.depend + +-include ./.depend + +.c.o: + $(CC) $(CC_FLAGS) -c $< -o $@ + +$(TARGET): $(TARGET).o + $(CC) $^ $(LD_FLAGS) -o $@ + +clean: + rm -f *.o *~ $(TARGET) + rm .depend + +help: + @echo "all is the default target" + @echo "there is clean." -- cgit v1.2.3