Use rebar for the build system.
This commit is contained in:
parent
37a5811135
commit
ea5706acb7
31
Emakefile
31
Emakefile
@ -1,31 +0,0 @@
|
||||
% EGS: Erlang Game Server
|
||||
% Copyright (C) 2010 Loic Hoguin
|
||||
%
|
||||
% This file is part of EGS.
|
||||
%
|
||||
% EGS is free software: you can redistribute it and/or modify
|
||||
% it under the terms of the GNU General Public License as published by
|
||||
% the Free Software Foundation, either version 3 of the License, or
|
||||
% (at your option) any later version.
|
||||
%
|
||||
% EGS is distributed in the hope that it will be useful,
|
||||
% but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
% GNU General Public License for more details.
|
||||
%
|
||||
% You should have received a copy of the GNU General Public License
|
||||
% along with EGS. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
{'src/egs.erl', [{outdir, "ebin"}]}.
|
||||
{'src/egs_app.erl', [{outdir, "ebin"}]}.
|
||||
{'src/egs_sup.erl', [{outdir, "ebin"}]}.
|
||||
{'src/egs_cron.erl', [{outdir, "ebin"}]}.
|
||||
{'src/egs_db.erl', [{outdir, "ebin"}]}.
|
||||
{'src/egs_game.erl', [{outdir, "ebin"}]}.
|
||||
{'src/egs_login.erl', [{outdir, "ebin"}]}.
|
||||
{'src/psu/psu_patch.erl', [{outdir, "ebin"}]}.
|
||||
{'src/egs_proto.erl', [{outdir, "ebin"}]}.
|
||||
{'src/psu_appearance.erl', [{outdir, "ebin"}]}.
|
||||
{'src/psu_characters.erl', [{outdir, "ebin"}]}.
|
||||
{'src/psu_missions.erl', [{outdir, "ebin"}]}.
|
||||
{'src/psu_parser.erl', [{outdir, "ebin"}]}.
|
16
Makefile
16
Makefile
@ -16,18 +16,22 @@
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with EGS. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
ERL ?= erl
|
||||
ERLC ?= erlc
|
||||
APP := egs
|
||||
|
||||
all: server
|
||||
|
||||
server: clean missions
|
||||
@erl -make
|
||||
server: missions
|
||||
@./rebar compile
|
||||
|
||||
missions:
|
||||
erlc src/psu_parser.erl
|
||||
erl -noshell -noinput -sname missions -pa ebin -run psu_parser run -run init stop
|
||||
$(ERLC) src/psu_parser.erl
|
||||
$(ERL) -noshell -noinput -sname missions -pa ebin -run psu_parser run -run init stop
|
||||
rm psu_parser.beam
|
||||
|
||||
clean:
|
||||
rm -f ebin/*.beam
|
||||
@./rebar clean
|
||||
rm -f erl_crash.dump
|
||||
|
||||
fclean: clean
|
||||
@ -37,4 +41,4 @@ run:
|
||||
@echo "EGS is free software available under the GNU GPL version 3"
|
||||
@echo "Copyright (C) 2010 Loic Hoguin"
|
||||
@echo
|
||||
erl -ssl protocol_version '{sslv3}' -sname egs -pa ebin -s egs
|
||||
$(ERL) -ssl protocol_version '{sslv3}' -sname egs -pa ebin -s egs
|
||||
|
Loading…
Reference in New Issue
Block a user