Sha256: f5f11721648e3c708a99ca59f92a52f8d4169d4eef4ff44a064de5ecb50497f6

Contents?: true

Size: 713 Bytes

Versions: 28

Compression:

Stored size: 713 Bytes

Contents

LIBDIR					= `erl -eval 'io:format("~s~n", [code:lib_dir()])' -s init stop -noshell`
CC							= erlc
ERL							= erl
EBIN						= ebin
CFLAGS					= +debug_info -W0 -I include -I ../../../../lib/proto/gen-erl -pa $(EBIN)
COMPILE					= $(CC) $(CFLAGS) -o $(EBIN)
EBIN_DIRS				= $(wildcard deps/*/ebin)
APP							= hermes

all: ebin compile
deps: thrift
	
compile:
	@$(ERL) -pa $(EBIN_DIRS) -noinput +B -eval 'case make:all() of up_to_date -> halt(0); error -> halt(1) end.'

run: all
	@$(ERL) -pa ./ebin -pa $(EBIN_DIRS) -s -s thrift_example run -s init stop

ebin:
	@mkdir ebin

clean:
	rm -rf ebin/*.beam ebin/erl_crash.dump erl_crash.dump ebin/*.boot ebin/*.rel ebin/*.script 

thrift:
	@(cd deps/thrift;$(MAKE))

Version data entries

28 entries across 28 versions & 3 rubygems

Version Path
auser-poolparty-1.3.0 examples/thrift/erlang/Makefile
auser-poolparty-1.3.1 examples/thrift/erlang/Makefile
auser-poolparty-1.3.10 examples/thrift/erlang/Makefile
auser-poolparty-1.3.11 examples/thrift/erlang/Makefile
auser-poolparty-1.3.12 examples/thrift/erlang/Makefile
auser-poolparty-1.3.13 examples/thrift/erlang/Makefile
auser-poolparty-1.3.14 examples/thrift/erlang/Makefile
auser-poolparty-1.3.15 examples/thrift/erlang/Makefile
auser-poolparty-1.3.16 examples/thrift/erlang/Makefile
auser-poolparty-1.3.17 examples/thrift/erlang/Makefile
auser-poolparty-1.3.2 examples/thrift/erlang/Makefile
auser-poolparty-1.3.3 examples/thrift/erlang/Makefile
auser-poolparty-1.3.4 examples/thrift/erlang/Makefile
auser-poolparty-1.3.5 examples/thrift/erlang/Makefile
auser-poolparty-1.3.6 examples/thrift/erlang/Makefile
auser-poolparty-1.3.7 examples/thrift/erlang/Makefile
auser-poolparty-1.3.8 examples/thrift/erlang/Makefile
fairchild-poolparty-1.3.17 examples/thrift/erlang/Makefile
fairchild-poolparty-1.3.5 examples/thrift/erlang/Makefile
poolparty-1.3.15 examples/thrift/erlang/Makefile