summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile25
1 files changed, 22 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a473a20..9205e0b 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,26 @@ case-study:
7 7
8benchmarks: 8benchmarks:
9 sed -i "s/LITMUS 1/LITMUS 0/g" extra.h 9 sed -i "s/LITMUS 1/LITMUS 0/g" extra.h
10 $(MAKE) -C baseline all 10 #$(MAKE) -C baseline all
11 $(MAKE) -C all_pairs all 11 #$(MAKE) -C all_pairs all
12 $(MAKE) -C dis pairs 12 #$(MAKE) -C dis pairs
13 $(MAKE) -C SD-VBS/benchmarks CFLAGS=-DPAIRED compile
14
15
16benches := svm mser sift texture_synthesis tracking disparity localization multi_ncut stitch
17bench_path := SD-VBS/benchmarks
18dag_path := SD-VBS/dag_binaries
19single_suffix := _qcif_single
20pair_suffix := _qcif_pair
21dag-case-study:
22 sed -i "s/LITMUS 0/LITMUS 1/g" extra.h
23 $(MAKE) -C SD-VBS/benchmarks compile
24 @for v in $(benches) ; do \
25 # echo "$(dag_path)/$$v""$(single_suffix)"; \
26 sudo cp $(bench_path)/$$v/data/qcif/$$v "$(dag_path)/$$v""$(single_suffix)"; \
27 done
13 $(MAKE) -C SD-VBS/benchmarks CFLAGS=-DPAIRED compile 28 $(MAKE) -C SD-VBS/benchmarks CFLAGS=-DPAIRED compile
29 @for v in $(benches) ; do \
30 # echo "$(dag_path)/$$v""$(pair_suffix)"; \
31 sudo cp $(bench_path)/$$v/data/qcif/$$v "$(dag_path)/$$v""$(pair_suffix)"; \
32 done