]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/thrift/test/erl/Makefile.am
81913eefd76ebb6d092852ae5c633d0d11ce187c
[ceph.git] / ceph / src / jaegertracing / thrift / test / erl / Makefile.am
1 #
2 # Licensed to the Apache Software Foundation (ASF) under one
3 # or more contributor license agreements. See the NOTICE file
4 # distributed with this work for additional information
5 # regarding copyright ownership. The ASF licenses this file
6 # to you under the Apache License, Version 2.0 (the
7 # "License"); you may not use this file except in compliance
8 # with the License. You may obtain a copy of the License at
9 #
10 # http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing,
13 # software distributed under the License is distributed on an
14 # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 # KIND, either express or implied. See the License for the
16 # specific language governing permissions and limitations
17 # under the License.
18 #
19
20 THRIFT_FILES = $(wildcard ../*.thrift)
21
22 if ERLANG_OTP16
23 ERL_FLAG = erl:otp16
24 else
25 ERL_FLAG = erl
26 endif
27 # make sure ThriftTest.thrift is generated last to prevent conflicts with other *.thrift files
28 .generated: $(THRIFT_FILES)
29 for f in $(THRIFT_FILES) ; do \
30 $(THRIFT) --gen $(ERL_FLAG) -o src $$f ; \
31 done ; \
32 $(THRIFT) --gen $(ERL_FLAG) -o src ../ThriftTest.thrift
33 touch .generated
34
35 precross: .generated
36 $(REBAR) compile
37
38 maintainer-clean-local:
39 $(RM) -r ebin/
40
41 clean:
42 $(REBAR) clean
43 $(RM) .generated
44 $(RM) -r .rebar/
45 $(RM) -r src/gen-erl/
46
47 dist-hook:
48 $(RM) $(distdir)/.generated
49 $(RM) -r $(distdir)/.rebar/
50 $(RM) -r $(distdir)/ebin/
51 $(RM) -r $(distdir)/src/gen-erl/