diff options
Diffstat (limited to 'simulations/Makefile')
| -rw-r--r-- | simulations/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
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 |
