Move the server startup command into start.sh.
This commit is contained in:
parent
a484de77e0
commit
74f54e7e71
14
Makefile
14
Makefile
@ -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
|
|
||||||
|
Loading…
Reference in New Issue
Block a user