forked from umd-memsys/DRAMSim2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
66 lines (48 loc) · 1.44 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
CXXFLAGS=-DNO_STORAGE -Wall -DDEBUG_BUILD
OPTFLAGS=-O3
ifdef DEBUG
ifeq ($(DEBUG), 1)
OPTFLAGS= -O0 -g
endif
endif
CXXFLAGS+=$(OPTFLAGS)
EXE_NAME=DRAMSim
STATIC_LIB_NAME := libdramsim.a
LIB_NAME=libdramsim.so
LIB_NAME_MACOS=libdramsim.dylib
SRC = $(wildcard *.cpp)
OBJ = $(addsuffix .o, $(basename $(SRC)))
LIB_SRC := $(filter-out TraceBasedSim.cpp,$(SRC))
LIB_OBJ := $(addsuffix .o, $(basename $(LIB_SRC)))
#build portable objects (i.e. with -fPIC)
POBJ = $(addsuffix .po, $(basename $(LIB_SRC)))
REBUILDABLES=$(OBJ) ${POBJ} $(EXE_NAME) $(LIB_NAME) $(STATIC_LIB_NAME)
all: ${EXE_NAME}
# $@ target name, $^ target deps, $< matched pattern
$(EXE_NAME): $(OBJ)
$(CXX) $(CXXFLAGS) -o $@ $^
@echo "Built $@ successfully"
$(LIB_NAME): $(POBJ)
g++ -g -shared -Wl,-soname,$@ -o $@ $^
@echo "Built $@ successfully"
$(STATIC_LIB_NAME): $(LIB_OBJ)
$(AR) crs $@ $^
$(LIB_NAME_MACOS): $(POBJ)
g++ -dynamiclib -o $@ $^
@echo "Built $@ successfully"
#include the autogenerated dependency files for each .o file
-include $(OBJ:.o=.dep)
-include $(POBJ:.po=.deppo)
# build dependency list via gcc -M and save to a .dep file
%.dep : %.cpp
@$(CXX) -M $(CXXFLAGS) $< > $@
%.deppo : %.cpp
@$(CXX) -M $(CXXFLAGS) -MT"$*.po" $< > $@
# build all .cpp files to .o files
%.o : %.cpp
g++ $(CXXFLAGS) -o $@ -c $<
#po = portable object .. for lack of a better term
%.po : %.cpp
g++ $(CXXFLAGS) -DLOG_OUTPUT -fPIC -o $@ -c $<
clean:
-rm -f $(REBUILDABLES) *.dep *.deppo