From 4f1b2ea492d3e19c81ab98f050618d437b6e9ec5 Mon Sep 17 00:00:00 2001 From: Loïc Guégan Date: Fri, 19 Sep 2025 13:19:02 +0200 Subject: Clean repo and debug setup.sh --- simulations/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'simulations/Makefile') diff --git a/simulations/Makefile b/simulations/Makefile index 3ed792d..8702e66 100644 --- a/simulations/Makefile +++ b/simulations/Makefile @@ -7,7 +7,7 @@ CC := g++ $(addprefix -L , $(LIBS)) $(addprefix -I , $(INCLUDES)) all: $(EXEC) $(basename $(notdir $(SCENARIOS))) $(EXEC): $(filter-out $(SCENARIOS), $(wildcard src/*)) - $(CC) -lsimgrid $^ -o $@ + $(CC) $^ -lsimgrid -o $@ $(basename $(notdir $(SCENARIOS))): $(SCENARIOS) $(CC) $^ -o $@ @@ -16,4 +16,4 @@ 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 + -rm $(EXEC) $(basename $(notdir $(SCENARIOS))) -- cgit v1.2.3