blob: 7a9b30a4febe0f462c4d8ec4d703db65db9fe83f [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
20SUBDIRS = .
21
22if WITH_TESTS
23SUBDIRS += test
Allen Georgede6f61a2021-03-11 08:25:26 -050024SUBDIRS += test_recursive
Allen George8b96bfb2016-11-02 08:01:08 -040025endif
26
27install:
28 @echo '##############################################################'
29 @echo '##############################################################'
30 @echo 'The Rust client library should be installed via a Cargo.toml dependency - please see /lib/rs/README.md'
31 @echo '##############################################################'
32 @echo '##############################################################'
33
34check-local:
Allen George55c3e4c2021-03-01 23:19:52 -050035 $(CARGO) fmt --all -- --check
Allen George99c3aa22021-03-06 14:11:56 -050036 $(CARGO) clippy --all -- -D warnings
Allen George8b96bfb2016-11-02 08:01:08 -040037 $(CARGO) test
38
39all-local:
Allen George55c3e4c2021-03-01 23:19:52 -050040 $(CARGO) fmt --all -- --check
Allen George99c3aa22021-03-06 14:11:56 -050041 $(CARGO) clippy --all -- -D warnings
Allen George8b96bfb2016-11-02 08:01:08 -040042 $(CARGO) build
43
44clean-local:
45 $(CARGO) clean
46 -$(RM) Cargo.lock
47
48EXTRA_DIST = \
49 src \
50 Cargo.toml \
Jens Geyer2ef01132021-02-04 22:41:50 +010051 README.md \
52 release.sh \
53 RELEASING.md
54