Migrate erlware_commons to rebar support

This commit is contained in:
Eric Merritt 2012-06-05 17:59:46 -05:00
parent 26a2e91d4a
commit c828f7415a
3 changed files with 4 additions and 18 deletions

View file

@ -1,17 +0,0 @@
ERLC=`which erlc`
BEAMDIR=./ebin
ERLCFLAGS=+debug_info -pa $(BEAMDIR)
SRCDIR=src
.PHONY=all clean
all:
@echo "Erlware Commons is maintained with Sinan, its much better to use "
@echo "sinan to build than this makefile. This is here just to get "
@echo "get you started."
$(ERLC) $(ERLCFLAGS) -o $(BEAMDIR) $(SRCDIR)/ec_dictionary.erl;
$(ERLC) $(ERLCFLAGS) -o $(BEAMDIR) $(SRCDIR)/*.erl ;
clean:
rm $(BEAMDIR)/*.beam
rm -rf erl_crush.dump

3
rebar.config Normal file
View file

@ -0,0 +1,3 @@
{erl_opts,
[debug_info,
warnings_as_errors]}.

View file

@ -1,7 +1,7 @@
%% -*- mode: Erlang; fill-column: 75; comment-column: 50; -*-
{application, erlware_commons,
[{description, "Additional standard library for Erlang"},
{vsn, "0.6.2"},
{vsn, "0.7.0"},
{modules, [
ec_talk,
ec_lists,