From 74f54e7e71fc858f5c30b3fd5cec9168c0e1e714 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sun, 13 Feb 2011 12:20:23 +0100 Subject: [PATCH] Move the server startup command into start.sh. --- Makefile | 14 ++------------ start.sh | 5 +++++ 2 files changed, 7 insertions(+), 12 deletions(-) create mode 100755 start.sh diff --git a/Makefile b/Makefile index 6a2ff6d..ff7e0f3 100644 --- a/Makefile +++ b/Makefile @@ -16,18 +16,14 @@ # You should have received a copy of the GNU Affero General Public License # along with EGS. If not, see . -ERL ?= erl -ERLC ?= erlc -APP := egs - all: clean missions server server: @./rebar compile missions: - $(ERLC) src/psu/psu_parser.erl - $(ERL) -noshell -noinput -sname missions -pa ebin -run psu_parser run -run init stop + erlc src/psu/psu_parser.erl + erl -noshell -noinput -sname missions -pa ebin -run psu_parser run -run init stop rm psu_parser.beam clean: @@ -36,9 +32,3 @@ clean: fclean: clean rm -rf Mnesia.egs* - -run: - @echo "EGS is free software available under the GNU GPL version 3" - @echo "Copyright (C) 2010 Loic Hoguin" - @echo - $(ERL) -sname egs -pa ebin -boot start_sasl -s reloader -s egs diff --git a/start.sh b/start.sh new file mode 100755 index 0000000..00757e5 --- /dev/null +++ b/start.sh @@ -0,0 +1,5 @@ +#!/bin/sh +echo "EGS is free software available under the GNU GPL version 3" +echo "Copyright (C) 2010 Loic Hoguin" +echo +erl -sname egs -pa ebin -boot start_sasl -s reloader -s egs