blob: 4aa05dadaafb57f76e7a93a94f690392596f9bda [file] [log] [blame]
Allen George8b96bfb2016-11-02 08:01:08 -04001#
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
Allen George55c3e4c2021-03-01 23:19:52 -050027 $(CARGO) fmt --all -- --check
Allen George8b96bfb2016-11-02 08:01:08 -040028 [ -d bin ] || mkdir bin
29 cp target/debug/tutorial_server bin/tutorial_server
30 cp target/debug/tutorial_client bin/tutorial_client
31
32check: all
33
34tutorialserver: all
35 bin/tutorial_server
36
37tutorialclient: all
38 bin/tutorial_client
39
40clean-local:
41 $(CARGO) clean
42 -$(RM) Cargo.lock
43 -$(RM) src/shared.rs
44 -$(RM) src/tutorial.rs
45 -$(RM) -r bin
46
47EXTRA_DIST = \
48 Cargo.toml \
49 src/lib.rs \
50 src/bin/tutorial_server.rs \
51 src/bin/tutorial_client.rs \
52 README.md
53