loosely-coupled-dss/Makefile
2021-05-05 16:42:11 +02:00

14 lines
No EOL
419 B
Makefile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

EXEC := simulator
SG_LIBS := ./libs/simgrid/build/lib
SG_INC := -I ./libs/simgrid/build/include -I ./libs/simgrid/include -I libs/rapidjson/include
CC := g++ -lsimgrid $(SG_INC) -L $(SG_LIBS)
$(EXEC): simulator.cc inputs.cc
$(CC) $^ -o $@
run: $(EXEC)
export LD_LIBRARY_PATH=$(SG_LIBS) && ./$(EXEC) 10 --cfg=network/bandwidth-factor:1.05 --cfg=network/model:CM02 -cfg=network/crosstraffic:0
clean:
-rm $(EXEC)