mirror of
https://github.com/mikpe/pdp10-tools.git
synced 2026-01-24 19:32:52 +00:00
42 lines
1.3 KiB
Erlang
42 lines
1.3 KiB
Erlang
%% -*- erlang -*-
|
|
%% rebar.config for pdp10-tools
|
|
%% Copyright (C) 2018-2019 Mikael Pettersson
|
|
%%
|
|
%% This file is part of pdp10-tools.
|
|
%%
|
|
%% pdp10-tools 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.
|
|
%%
|
|
%% pdp10-tools 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 pdp10-tools. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.
|
|
|
|
{erl_opts, [ debug_info
|
|
, warn_unused_vars
|
|
, warn_shadow_vars
|
|
, warn_unused_import
|
|
, warn_obsolete_guard
|
|
, warnings_as_errors
|
|
]}.
|
|
|
|
{deps, []}.
|
|
|
|
{escript_emu_args, "%%! +sbtu +A1 +Bd -noshell -smp auto\n"}.
|
|
|
|
{profiles,
|
|
[ {'8to9', [{escript_main_app, '8to9'}]}
|
|
, {ar, [{escript_main_app, ar}]}
|
|
, {as, [{escript_main_app, as}]}
|
|
, {nm, [{escript_main_app, nm}]}
|
|
, {od, [{escript_main_app, od}]}
|
|
, {readelf, [{escript_main_app, readelf}]}
|
|
]}.
|