aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2021-05-06 09:04:35 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2021-05-06 09:04:35 +0200
commit4b321cfe80f0bbf94f3648a9fc056ae2c19a3436 (patch)
tree9e6e8d561a77b9f684d33716b642521d1bce67c0 /Makefile
parente8ad4ccb0979e1118e310d1e514ef3a58275b66f (diff)
Improve platform management and allow energy simulation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 70ed266..58c29a5 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ SG_INC := -I ./libs/simgrid/build/include -I ./libs/simgrid/include -I libs/rapi
CC := g++ -lsimgrid $(SG_INC) -L $(SG_LIBS)
-$(EXEC): simulator.cc inputs.cc
+$(EXEC): src/simulator.cc src/inputs.cc
$(CC) $^ -o $@
run: $(EXEC)