From e1ac89f2a2e4cfd2e31eac41575f318d3e0f74be Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Sun, 30 Aug 2009 16:12:41 +0000 Subject: Add test suite for determine_slotting.c git-svn-id: svn://mattst88.com/svn/annotator/trunk@6 b9d43f0c-d947-41e4-9d27-581b740e5c48 --- test/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 test/Makefile (limited to 'test/Makefile') 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) $< -- cgit v1.2.3