bdberl/Makefile
Gregory Burd 00f5549644 Cleanup
2011-11-28 14:08:27 -05:00

25 lines
366 B
Makefile

ERL ?=erl
ERL_FLAGS ?=+A10
REBAR_FLAGS :=
all: $(BDB_LOCAL_LIB)
ERL_FLAGS=$(ERL_FLAGS) $(REBAR) $(REBAR_FLAGS) compile
test: tests
tests:
@ $(REBAR) $(REBAR_FLAGS) eunit ct
clean:
$(REBAR) $(REBAR_FLAGS) clean
-rm test/*.beam
distclean: clean
-make -C c_src clean
-rm -rf c_src/sources
-rm -rf priv
-rm -rf logs
include rebar.mk