Packages

A Pure Erlang ZooKeeper Client (no C dependency)

Current section

Files

Jump to
erlzk Makefile
Raw

Makefile

REBAR?=rebar
all: build
build:
$(REBAR) compile
clean:
$(REBAR) clean
doc:
$(REBAR) doc
test: build
$(REBAR) eunit
.PHONY: all build clean doc test