public
Fork of ngerakines/erlang_couchdb
Description: This is another erlang CouchDB client. It is a little simpler than most and does what I want.
Homepage:
Clone URL: git://github.com/pib/erlang_couchdb.git
erlang_couchdb / Makefile
100644 19 lines (13 sloc) 0.344 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
all: code
 
code: clean
erlc +debug_info -o ./ebin src/erlang_couchdb.erl
erlc +debug_info -o ./ebin src/couchdb.erl
 
clean:
rm -rfv ebin/*.beam erl_crash.dump
 
dist-src: clean
tar zcvf erlang_couchdb-0.2.3.tgz Makefile src/
 
test: all
prove -v t/*.t
 
cover: all
COVER=1 prove t/*.t
erl -noshell -eval 'etap_report:create()' -s init stop