]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/thrift/tutorial/rs/Makefile.am
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / thrift / tutorial / rs / Makefile.am
CommitLineData
f67539c2
TL
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
20THRIFT = $(top_builddir)/compiler/cpp/thrift
21
22gen-rs/tutorial.rs gen-rs/shared.rs: $(top_srcdir)/tutorial/tutorial.thrift
23 $(THRIFT) -out src --gen rs -r $<
24
25all-local: gen-rs/tutorial.rs
26 $(CARGO) build
27 [ -d bin ] || mkdir bin
28 cp target/debug/tutorial_server bin/tutorial_server
29 cp target/debug/tutorial_client bin/tutorial_client
30
31check: all
32
33tutorialserver: all
34 bin/tutorial_server
35
36tutorialclient: all
37 bin/tutorial_client
38
39clean-local:
40 $(CARGO) clean
41 -$(RM) Cargo.lock
42 -$(RM) src/shared.rs
43 -$(RM) src/tutorial.rs
44 -$(RM) -r bin
45
46EXTRA_DIST = \
47 Cargo.toml \
48 src/lib.rs \
49 src/bin/tutorial_server.rs \
50 src/bin/tutorial_client.rs \
51 README.md
52