From c2affb00ff404613f45b51cd97b50773982fde5f Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Fri, 11 Nov 2022 15:47:19 +0100 Subject: Minor changes --- simulations/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 simulations/Makefile (limited to 'simulations/Makefile') diff --git a/simulations/Makefile b/simulations/Makefile new file mode 100644 index 0000000..3ed792d --- /dev/null +++ b/simulations/Makefile @@ -0,0 +1,19 @@ +EXEC := simulator +LIBS := ./libs/simgrid/build/lib +INCLUDES := ./libs/simgrid/build/include ./libs/simgrid/include libs/rapidjson/include +SCENARIOS := src/scenarios.cc +CC := g++ $(addprefix -L , $(LIBS)) $(addprefix -I , $(INCLUDES)) + +all: $(EXEC) $(basename $(notdir $(SCENARIOS))) + +$(EXEC): $(filter-out $(SCENARIOS), $(wildcard src/*)) + $(CC) -lsimgrid $^ -o $@ + +$(basename $(notdir $(SCENARIOS))): $(SCENARIOS) + $(CC) $^ -o $@ + +run: $(EXEC) + export LD_LIBRARY_PATH=$(addprefix :, $(LIBS)) && ./$(EXEC) 10 --cfg=network/bandwidth-factor:1.05 --cfg=network/model:CM02 -–cfg=network/crosstraffic:0 + +clean: + -rm $(EXEC) $(basename $(notdir $(SCENARIOS))) \ No newline at end of file -- cgit v1.2.3