Skip to content

Commit

Permalink
Erlang encoder / decoder
Browse files Browse the repository at this point in the history
  • Loading branch information
dams committed Oct 24, 2014
1 parent 3e46868 commit b9bf0ac
Show file tree
Hide file tree
Showing 82 changed files with 3,669 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Erlang/Sereal/Makefile
@@ -0,0 +1,20 @@
C_OUT=c_src/*.o
DEBUG=0
MAPS=0

all: deps eunit

clean:
rm -f $(C_OUT)
rebar clean

deps:
rebar get-deps

compile: clean
rebar compile -D DEBUG=$(DEBUG) -D SEREAL_MAP_SUPPORT=$(MAPS)

eunit: compile
rebar eunit

.PHONY: clean all

0 comments on commit b9bf0ac

Please sign in to comment.