diff options
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 17 |
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) $< |