summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2009-08-30 16:12:41 +0000
committerMatt Turner <mattst88@gmail.com>2009-08-30 16:12:41 +0000
commite1ac89f2a2e4cfd2e31eac41575f318d3e0f74be (patch)
tree1ba1a8bbe02bb450f4e045ca625d7bf2612967f0 /test/Makefile
parentd47db4643ba5aba34c9bdebb249d55a98c860950 (diff)
Add test suite for determine_slotting.cHEADmaster
git-svn-id: svn://mattst88.com/svn/annotator/trunk@6 b9d43f0c-d947-41e4-9d27-581b740e5c48
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile
new file mode 100644
index 0000000..ebd4364
--- /dev/null
+++ b/test/Makefile
@@ -0,0 +1,17 @@
+CC=gcc
+MYCFLAGS=-O3 -mcpu=ev67 -pipe
+WARN=-Wunused -Wextra -Wall -std=gnu99 -pedantic
+INC=-I ../include/
+MYLDFLAGS=-Wl,-z,now $(LDFLAGS)
+
+OBJS=test-determine_slotting.o
+
+all: $(DEPS) $(OBJS)
+
+clean:
+ /bin/rm -f cleanbench sysinfo.c $(OBJS)
+
+remake: clean all
+
+%: %.c
+ $(CC) $(MYCFLAGS) $(WARN) $<