rules.mk 998 Bytes
Newer Older
1
all: build/results.tex build/simtime_graph.dat
2
3
4
5

clean:
	rm -rf build

6
build/results.tex: build/loc_corundum_bm build/loc_corundum_verilator \
7
    build/nopaxos_eval build/vr_eval build/corundum_eval
8
9
10
11
12
	@echo '%' This is generated with make in the results directory \
	    of the ehsim repo >$@
	cat $^ >>$@

# Lines of code in corundum
13
build/loc_corundum_bm: loccount_corundum_bm.sh common-functions.sh
14
15
16
	@mkdir -p $(dir $@)
	bash loccount_corundum_bm.sh >$@

17
build/loc_corundum_verilator: loccount_corundum_verilator.sh common-functions.sh
18
19
	@mkdir -p $(dir $@)
	bash loccount_corundum_verilator.sh >$@
20

21
build/nopaxos_eval: nopaxos_eval.sh common-functions.sh
22
23
	@mkdir -p $(dir $@)
	bash nopaxos_eval.sh >$@
Antoine Kaufmann's avatar
Antoine Kaufmann committed
24
25
26
27

build/vr_eval: vr_eval.sh common-functions.sh
	@mkdir -p $(dir $@)
	bash vr_eval.sh >$@
28
29
30
31
32
33
34
35

build/corundum_eval: corundum.sh common-functions.sh
	@mkdir -p $(dir $@)
	bash corundum.sh >$@

build/simtime_graph.dat: simtime_graph.sh common-functions
	@mkdir -p $(dir $@)
	bash simtime_graph.sh >$@