-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.am
More file actions
58 lines (51 loc) · 1.7 KB
/
Makefile.am
File metadata and controls
58 lines (51 loc) · 1.7 KB
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
AUTOMAKE_OPTIONS = foreign
bin_PROGRAMS = simulator simdebug
simulator_SOURCES = \
coresim/main.cpp \
coresim/debug.cpp \
coresim/node.cpp \
coresim/queue.cpp \
coresim/packet.cpp \
coresim/event.cpp \
coresim/topology.cpp \
coresim/flow.cpp \
coresim/random_variable.cpp \
coresim/fatTreeTopology.cpp \
coresim/leafSpineTopology.cpp \
coresim/SnsleafSpineTopology.cpp \
coresim/SnsFatTreeTopology.cpp \
ext/factory.cpp \
ext/pfabricqueue.cpp \
ext/pfabricflow.cpp \
ext/schedulinghost.cpp \
ext/fountainflow.cpp \
ext/magichost.cpp \
ext/magicflow.cpp \
ext/capabilityflow.cpp \
ext/capabilityhost.cpp \
ext/fastpassflow.cpp \
ext/fastpasshost.cpp \
ext/fastpassTopology.cpp \
ext/rufhost.cpp \
ext/rufflow.cpp \
ext/rufTopology.cpp \
ext/pimflow.cpp \
ext/snsflow.cpp \
ext/strackflow.cpp \
ext/ndpflow.cpp \
ext/repsflow.cpp \
ext/pimhost.cpp \
coresim/snshost.cpp \
ext/tcpflow.cpp \
ext/dctcpQueue.cpp \
ext/dctcpFlow.cpp \
ext/ideal.cpp \
run/params.cpp \
run/stats.cpp \
run/flow_generator.cpp \
run/experiment.cpp
simulator_CXXFLAGS = -g -O3 -gdwarf-2 -Wall -std=c++0x
simdebug_SOURCES = $(simulator_SOURCES)
simdebug_CXXFLAGS = -g -O0 -gdwarf-2 -Wall -std=c++0x
#CFLAGS = -g -O3 -gdwarf-2 -Wall -std=c++0x
#CXXFLAGS = -g -O3 -gdwarf-2 -Wall -std=c++0x