public
Description: Erlang -> Berkeley DB Sample
Homepage:
Clone URL: git://github.com/dawsdesign/erl_bdb_sample.git
Matt Williamson (author)
Tue May 26 07:48:34 -0700 2009
erl_bdb_sample / src / Makefile
100644 12 lines (9 sloc) 0.154 kb
1
2
3
4
5
6
7
8
9
10
11
12
ERLC=erlc
EBIN=../ebin
INCLUDE=../include
EFLAGS=-I ${INCLUDE} -o ${EBIN}
SRCS=`ls *.erl`
 
all:
${ERLC} ${EFLAGS} ${SRCS}
 
clean:
rm -rf ${EBIN}/*.beam