Initial Commit

This commit is contained in:
2016-08-13 18:20:14 -05:00
commit 50f4a86fd8
408 changed files with 15301 additions and 0 deletions

19
lfe/leap/Makefile Normal file
View File

@@ -0,0 +1,19 @@
ERL = $(shell which erl)
LFETOOL = $(shell which lfetool)
REBAR = $(shell which rebar)
ifeq ($(ERL),)
$(error Can't find Erlang executable 'erl')
else ifeq ($(LFETOOL),)
$(error Can't find lfetool)
else ifeq ($(REBAR),)
$(error Can't find rebar)
endif
get-deps: ; $(REBAR) get-deps compile
clean: ; rebar clean
compile: ; $(REBAR) compile
test: compile; $(LFETOOL) tests unit