-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (25 loc) · 748 Bytes
/
Makefile
File metadata and controls
34 lines (25 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
include Makefile.conf
FILES= \
cycles.c micro_bench_run.ml micro_bench_types.ml \
micro_bench_types.mli time_stamp_counter.ml \
benchmarks
OPERF_MICRO:=operf-micro
OPERF_MICRO_SRC:=tools/$(OPERF_MICRO)
OPERF_MICRO_SHARE:=share/$(OPERF_MICRO)
all:
$(MAKE) -C $(OPERF_MICRO_SRC) all
$(MAKE) -C $(OPERF_MICRO_SHARE) all
install: all
$(MAKE) -C $(OPERF_MICRO_SRC) install
$(MAKE) -C $(OPERF_MICRO_SHARE) install
clean: clean
$(MAKE) -C $(OPERF_MICRO_SRC) clean
$(MAKE) -C $(OPERF_MICRO_SHARE) clean
uninstall:
$(MAKE) -C $(OPERF_MICRO_SRC) uninstall
$(MAKE) -C $(OPERF_MICRO_SHARE) uninstall
distclean: clean
rm -f Makefile.conf
depend:
$(MAKE) -C $(OPERF_MICRO_SRC) depend
.PHONY: all install depend clean uninstall distclean