summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-10-19 17:35:53 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-10-19 17:35:53 +0200
commit7ef97d8cd7a62fe40701842286f28743c237cedb (patch)
treefea94ee84e7dd14f9f9b45e5b87babcced1712e1 /Makefile
parentebb50d0c4063009dffcd3031ee2d6b82a28023bd (diff)
Fixes 'www' generation, navigator path change.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7768579..6f65c2d 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ WWW_DIR = ${CURDIR}/www
MODULES_SRC = $(addprefix $(SRC_DIR)/,$(MODULES))
MODULES_WWW = $(addprefix $(WWW_DIR)/,$(MODULES))
-all: build $(MODULES_WWW)
+all: build $(WWW_DIR) $(MODULES_WWW)
build:
for module in $(MODULES_SRC) ; do \
@@ -18,7 +18,7 @@ clean:
done
$(MODULES_WWW): %:
- ln -s $(SRC_DIR)/$(patsubst $(WWW_DIR)/%,%,$@)/www $@
+ ln -s $(SRC_DIR)/$(patsubst $(WWW_DIR)/%,%,$@)/www/ $@
$(WWW_DIR):
mkdir -p $@