-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
43 lines (33 loc) · 1.34 KB
/
Makefile
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
35
36
37
38
39
40
41
42
43
###############################################################################
# Makefile to build the Btree workload
#
# Paper: Mitosis - Mitosis: Transparently Self-Replicating Page-Tables
# for Large-Memory Machines
# Authors: Reto Achermann, Jayneel Gandhi, Timothy Roscoe,
# Abhishek Bhattacharjee, and Ashish Panwar
###############################################################################
CC = gcc
CXX = g++
# cflags used
CFLAGS=-O3 -march=native
CXXFLAGS=-O3 -march=native
# common libraries used
COMMON_LIBS=-lrt -ldl -lnuma -lpthread -lm
# common main functions for multithreaded, single threaded and page-table dump
SRC_M=src/main.c src/btree1.c
SRC_S=src/main.c src/btree1.c
DEPS=src/config.h
# the targets
all : bin/bench_btree_st bin/bench_btree_mt
###############################################################################
# HashJoin
###############################################################################
bin/bench_btree_st: $(SRC_S) $(DEPS)
$(CC) $(INCLUDES) $(CFLAGS) $(SRC_S) -o $@ $(COMMON_LIBS)
bin/bench_btree_mt: $(SRC_M) $(DEPS)
$(CC) $(INCLUDES) $(CFLAGS) -fopenmp $(SRC_M) -o $@ $(COMMON_LIBS)
###############################################################################
# Clean
###############################################################################
clean:
rm -rf bin/*