public
Description: An Erlang OAuth implementation
Homepage:
Clone URL: git://github.com/tim/erlang-oauth.git
Roberto Aloi (author)
Thu Jun 04 02:17:53 -0700 2009
Tim Fletcher (committer)
Thu Jun 04 14:23:42 -0700 2009
commit  5d93e6bf3b1593281a0f4a926f13c64dbcd9c4dc
tree    e980803e090ed699b5f8e5abac60a79206cf4d9d
parent  09857076a1cb0963eacc2f46495bb22b9c6ef8db
erlang-oauth / Makefile
100644 18 lines (11 sloc) 0.325 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
SOURCE_FILES := $(wildcard src/*.erl)
 
 
all: ebin
 
ebin: ebin/oauth.app $(SOURCE_FILES:src/%.erl=ebin/%.beam)
 
ebin/oauth.app: src/oauth.app
@test -d ebin || mkdir ebin
cp src/oauth.app ebin/oauth.app
 
ebin/%.beam: src/%.erl
@test -d ebin || mkdir ebin
erlc -W +debug_info -o ebin $<
 
clean:
@rm -rf ebin erl_crash.dump