summaryrefslogtreecommitdiff
path: root/ns3-simulations/simulator/Makefile
diff options
context:
space:
mode:
authorLoic Guegan <manzerberdes@gmx.com>2019-04-26 11:13:36 +0200
committerLoic Guegan <manzerberdes@gmx.com>2019-04-26 11:13:36 +0200
commit89d815f81ec2d928feab2296bb29dc085b4d2d69 (patch)
tree97b605d3024d7e8d7df567c585bc5aed5785dbe3 /ns3-simulations/simulator/Makefile
parent79ef212a8c8cc7b6c5af1c1c970b6faa6a1d8d53 (diff)
Debug+Do Simulations
Diffstat (limited to 'ns3-simulations/simulator/Makefile')
-rw-r--r--ns3-simulations/simulator/Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/ns3-simulations/simulator/Makefile b/ns3-simulations/simulator/Makefile
new file mode 100644
index 0000000..a9cee83
--- /dev/null
+++ b/ns3-simulations/simulator/Makefile
@@ -0,0 +1,25 @@
+
+EXEC=simulator
+
+##### NS3 g++ Arguments
+NS3_ARGS= -D NS3_LOG_ENABLE -L ${NS3_PATH}/build/lib -I ${NS3_PATH}/build/
+NS3_ARGS+=$(addprefix -l, $(subst lib,,$(subst .so,,$(notdir $(wildcard ${NS3_PATH}/build/lib/*.so)))))
+NS3_VERSION=$(shell cat ${NS3_PATH}/VERSION)
+
+##### Source Files
+SRC=main.cc modules/platform.cc modules/energy.cc modules/callbacks.cc
+
+
+all: $(EXEC)
+
+$(EXEC): $(SRC)
+ @echo -e "\e[32mDon't forget to define NS3_PATH env variable !\e[0m"
+ g++ -D NS3_VERSION=${NS3_VERSION} $(NS3_ARGS) $(SRC) -o $@
+ @echo -e "\e[32mRun the following command before running $(EXEC):\e[0m"
+ @echo -e "\e[32mexport LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${NS3_PATH}/build/lib\e[0m"
+
+clean:
+ - rm $(EXEC)
+
+
+.PHONY: clean