summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornsensfel <SpamShield0@noot-noot.org>2018-06-05 14:33:27 +0200
committernsensfel <SpamShield0@noot-noot.org>2018-06-05 14:33:27 +0200
commit983ed9d0e8da15cb8c304fea62c25d3b053e712b (patch)
tree71a2aa7618692abe46a7fb07c590995f97b56d97 /Makefile
parent25b3f31c8a451044459d104a3a36f919557b8d20 (diff)
Has the DB run as a separate node.
I am still figuring out how Erlang handles node connections... It would seem that spawn(NODE, ...) automatically initiates the connection to NODE (i.e. no need to use net_kernel:connect_node before).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 1ac3973..8eabe6b 100644
--- a/Makefile
+++ b/Makefile
@@ -41,10 +41,11 @@ build:
$(MAKE) -C $$module build ; \
done
-run:
- for module in $(MODULES_SRC) ; do \
- $(MAKE) -C $$module run; \
- done
+run_battlemap:
+ $(MAKE) -C $(MODULES_DIR)/battlemap/ run
+
+run_db:
+ $(MAKE) -C $(MODULES_DIR)/db/ run
clean:
for module in $(MODULES_SRC) ; do \