aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2018-06-30 22:31:23 +0000
committerbloodstalker <thabogre@gmail.com>2018-06-30 22:31:23 +0000
commitfa6eb4efa41e72519fc215b4c55768646bcfcde2 (patch)
tree6302e8fb10f1f33f4eafdc44a8e6a03e7e3b10fb /test
parentInitial commit (diff)
downloadfaultreiber-fa6eb4efa41e72519fc215b4c55768646bcfcde2.tar.gz
faultreiber-fa6eb4efa41e72519fc215b4c55768646bcfcde2.zip
update
Diffstat (limited to 'test')
-rw-r--r--test/makefile46
1 files changed, 46 insertions, 0 deletions
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."