diff options
-rw-r--r-- | Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -28,17 +28,23 @@ bench: bench-vec bench-sptree bench-map bench-vec: mkdir -p build - $(CC) $(CFLAGS) -O2 -Iinclude tests/vec.c -o build/vec_opt + $(CC) $(CFLAGS) -O2 \ + -Iinclude -Ideps/covsrv/include \ + tests/vec.c -o build/vec_opt time ./build/vec_opt 2> build/vec_bench.txt bench-sptree: mkdir -p build - $(CC) $(CFLAGS) -O2 -Iinclude tests/sptree.c -o build/sptree_opt + $(CC) $(CFLAGS) -O2 \ + -Iinclude -Ideps/covsrv/include \ + tests/sptree.c -o build/sptree_opt time ./build/sptree_opt 2> build/sptree_bench.txt bench-map: mkdir -p build - $(CC) $(CFLAGS) -O2 -Iinclude tests/map.c -o build/map_opt + $(CC) $(CFLAGS) -O2 \ + -Iinclude -Ideps/covsrv/include \ + tests/map.c -o build/map_opt time ./build/map_opt 2> build/map_bench.txt clean: |