Move the server startup command into start.sh.

This commit is contained in:
Loïc Hoguin 2011-02-13 12:20:23 +01:00
parent a484de77e0
commit 74f54e7e71
2 changed files with 7 additions and 12 deletions

View File

@ -16,18 +16,14 @@
# You should have received a copy of the GNU Affero General Public License # You should have received a copy of the GNU Affero General Public License
# along with EGS. If not, see <http://www.gnu.org/licenses/>. # along with EGS. If not, see <http://www.gnu.org/licenses/>.
ERL ?= erl
ERLC ?= erlc
APP := egs
all: clean missions server all: clean missions server
server: server:
@./rebar compile @./rebar compile
missions: missions:
$(ERLC) src/psu/psu_parser.erl erlc src/psu/psu_parser.erl
$(ERL) -noshell -noinput -sname missions -pa ebin -run psu_parser run -run init stop erl -noshell -noinput -sname missions -pa ebin -run psu_parser run -run init stop
rm psu_parser.beam rm psu_parser.beam
clean: clean:
@ -36,9 +32,3 @@ clean:
fclean: clean fclean: clean
rm -rf Mnesia.egs* 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

5
start.sh Executable file
View File

@ -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