benchmark tool
[ust.git] / tests / benchmark / Makefile
diff --git a/tests/benchmark/Makefile b/tests/benchmark/Makefile
new file mode 100644 (file)
index 0000000..b2922ce
--- /dev/null
@@ -0,0 +1,14 @@
+CC=gcc
+CFLAGS=-O3 -Wall
+LFLAGS=-lpthread -lust
+
+all: bench1 bench2
+
+bench1:
+       $(CC) $(CFLAGS) $(LFLAGS) -o bench1 bench.c
+bench2:
+       $(CC) $(CFLAGS) $(LFLAGS) -DMARKER -o bench2 bench.c
+
+
+clean:
+       rm -f *.o bench1 bench2
This page took 0.022923 seconds and 4 git commands to generate.