forked from openthread/wpantund
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
74 lines (64 loc) · 2.48 KB
/
Makefile.am
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#
# Copyright (c) 2016 Nest Labs, Inc.
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4
DIST_TARGETS = dist-gzip dist-bzip2
DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
AM_DISTCHECK_CONFIGURE_FLAGS = --enable-all-restricted-plugins
@CODE_COVERAGE_RULES@
SUBDIRS = \
src \
doc \
third_party \
$(NULL)
DISTCLEANFILES = \
config.log \
config.status \
Makefile \
libtool \
make.out \
$(distdir).tar.* \
$(NULL)
EXTRA_DIST = \
.default-version \
.gitignore \
.gitattributes \
.uncrustify.cfg \
bootstrap.sh \
README.md \
TODO.md \
HACKING.md \
LICENSE \
CHANGELOG \
CONTRIBUTING.md \
INSTALL.md \
doxygen.cfg.in \
etc/Dockerfile \
etc/build-in-docker.sh \
etc/run-in-docker.sh \
etc/wpantund.rb \
etc/autoandr/autoandr \
m4/nl.m4 \
$(NULL)
HASH_VERSION = $(shell \
git describe --dirty --match __poison__ --always 2> /dev/null \
)
EXTRA_VERSION = $(shell \
git describe --all --contains 54e116add1f093663e047f88dac18b4851589483 1> /dev/null 2> /dev/null \
&& (test "`git describe 2> /dev/null | sed 's:^full/::'`" = $(VERSION) || echo -g$(HASH_VERSION)) \
)
distdir = $(PACKAGE)-$(VERSION)$(EXTRA_VERSION)