Migrate erlware_commons to rebar support
This commit is contained in:
parent
26a2e91d4a
commit
c828f7415a
3 changed files with 4 additions and 18 deletions
17
Makefile
17
Makefile
|
@ -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
3
rebar.config
Normal file
|
@ -0,0 +1,3 @@
|
|||
{erl_opts,
|
||||
[debug_info,
|
||||
warnings_as_errors]}.
|
|
@ -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,
|
Loading…
Add table
Add a link
Reference in a new issue