bdberl/Makefile

25 lines
366 B
Makefile
Raw Normal View History

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
2011-07-18 11:47:57 +00:00
-rm test/*.beam
2011-07-17 19:50:40 +00:00
distclean: clean
2011-11-28 19:08:27 +00:00
-make -C c_src clean
-rm -rf c_src/sources
-rm -rf priv
2011-07-18 07:28:38 +00:00
-rm -rf logs
include rebar.mk