sigar/bindings/erl/src/Makefile

12 lines
154 B
Makefile
Raw Normal View History

2009-06-15 12:29:08 +08:00
ERLC=erlc
EBIN=../ebin
INCLUDE=../include
EFLAGS=-I ${INCLUDE} -o ${EBIN}
SRCS=`ls *.erl`
all:
${ERLC} ${EFLAGS} ${SRCS}
clean:
rm -rf ${EBIN}/*.beam