summaryrefslogtreecommitdiff
path: root/simulations/Makefile
diff options
context:
space:
mode:
authorLoïc Guégan <loic.guegan@mailbox.org>2025-09-19 13:19:02 +0200
committerLoïc Guégan <loic.guegan@mailbox.org>2025-09-19 13:19:02 +0200
commit4f1b2ea492d3e19c81ab98f050618d437b6e9ec5 (patch)
tree118edc54e48150e7d9dfe78ef375a694fa4bc85f /simulations/Makefile
parent284cee3f032bed1243f0d1256d394e9458132075 (diff)
Clean repo and debug setup.sh
Diffstat (limited to 'simulations/Makefile')
-rw-r--r--simulations/Makefile4
1 files changed, 2 insertions, 2 deletions
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)))