1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright (c) 2015, Loïc Hoguin <[email protected]>
# This file is part of erlang.mk and subject to the terms of the ISC License.
# Verbosity.
proto_verbose_0 = @echo " PROTO " $(filter %.proto,$(?F));
proto_verbose = $(proto_verbose_$(V))
# Core targets.
define compile_proto
$(verbose) mkdir -p ebin/ include/
$(proto_verbose) $(call erlang,$(call compile_proto.erl,$(1)))
$(proto_verbose) erlc +debug_info -o ebin/ ebin/*.erl
$(verbose) rm ebin/*.erl
endef
define compile_proto.erl
[begin
Dir = filename:dirname(filename:dirname(F)),
protobuffs_compile:generate_source(F,
[{output_include_dir, Dir ++ "/include"},
{output_src_dir, Dir ++ "/ebin"}])
end || F <- string:tokens("$(1)", " ")],
halt().
endef
ifneq ($(wildcard src/),)
ebin/$(PROJECT).app:: $(sort $(call core_find,src/,*.proto))
$(if $(strip $?),$(call compile_proto,$?))
endif
|