2010-05-13 12:34:04 +08:00
|
|
|
# EGS: Erlang Game Server
|
2011-04-19 18:47:08 +08:00
|
|
|
# Copyright (C) 2010-2011 Loic Hoguin
|
2010-05-13 12:34:04 +08:00
|
|
|
#
|
|
|
|
# This file is part of EGS.
|
|
|
|
#
|
|
|
|
# EGS is free software: you can redistribute it and/or modify
|
2010-09-04 06:09:06 +08:00
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
2010-05-13 12:34:04 +08:00
|
|
|
#
|
2010-05-15 07:55:23 +08:00
|
|
|
# EGS is distributed in the hope that it will be useful,
|
2010-05-13 12:34:04 +08:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2010-09-04 06:09:06 +08:00
|
|
|
# GNU Affero General Public License for more details.
|
2010-05-13 12:34:04 +08:00
|
|
|
#
|
2010-09-04 06:09:06 +08:00
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
2010-05-15 07:55:23 +08:00
|
|
|
# along with EGS. If not, see <http://www.gnu.org/licenses/>.
|
2010-05-13 12:34:04 +08:00
|
|
|
|
2011-04-19 18:44:46 +08:00
|
|
|
REBAR = rebar
|
|
|
|
|
2011-06-08 08:18:10 +08:00
|
|
|
all: app
|
2010-05-13 12:34:04 +08:00
|
|
|
|
2011-06-08 08:18:10 +08:00
|
|
|
app: deps
|
2011-04-19 18:44:46 +08:00
|
|
|
@$(REBAR) compile
|
2010-05-13 12:34:04 +08:00
|
|
|
|
2011-02-20 22:30:35 +08:00
|
|
|
deps:
|
2011-04-19 18:44:46 +08:00
|
|
|
@$(REBAR) get-deps
|
2011-02-20 22:30:35 +08:00
|
|
|
|
2010-05-13 12:34:04 +08:00
|
|
|
clean:
|
2011-04-19 18:44:46 +08:00
|
|
|
@$(REBAR) clean
|
2010-05-13 12:34:04 +08:00
|
|
|
rm -f erl_crash.dump
|
2011-04-19 18:44:46 +08:00
|
|
|
|
|
|
|
tests:
|
|
|
|
@$(REBAR) eunit
|
|
|
|
@$(REBAR) ct
|
|
|
|
|
|
|
|
dialyze:
|
|
|
|
@$(REBAR) dialyze
|