aboutsummaryrefslogtreecommitdiff
path: root/test_harness/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test_harness/Makefile')
-rw-r--r--test_harness/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/test_harness/Makefile b/test_harness/Makefile
new file mode 100644
index 0000000..443292b
--- /dev/null
+++ b/test_harness/Makefile
@@ -0,0 +1,9 @@
+CC=gcc
+CFLAGS=-g3 -ggdb -Wall
+
+test_harness.a: test_harness.c test_harness.h fake_env.o
+ gcc -o test_harness.o -c test_harness.c $(CFLAGS)
+ ar r test_harness.a test_harness.o fake_env.o
+
+fake_env.o: fake_env.c fake_env.h
+ gcc -o fake_env.o -c fake_env.c $(CFLAGS)