Packages

Erlang-NaCl hex package

Current section

Files

Jump to
nacl Makefile
Raw

Makefile

all: test
test: compile
./rebar eunit
compile: deps
./rebar compile
clean:
./rebar clean
rm -rf ebin
veryclean: clean
rm -rf rel
rm -f erl_crash.dump
ultraclean: veryclean
rm -rf deps
deps:
./rebar get-deps
run: compile justrun
justrun:
ERL_LIBS=$(CURDIR)/deps erl \
-pa ebin \
$$(for dep in deps/*; do echo -pa $$dep/ebin; done) \
\
-boot start_sasl \
-s nacl