Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / third_party / nlassert / repo / third_party / Makefile.am
1 #
2 #    Copyright 2020 Project nlassert Authors. All Rights Reserved.
3 #    Copyright 2015-2018 Nest Labs Inc. All Rights Reserved.
4 #
5 #    Licensed under the Apache License, Version 2.0 (the "License");
6 #    you may not use this file except in compliance with the License.
7 #    You may obtain a copy of the License at
8 #
9 #    http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #    Unless required by applicable law or agreed to in writing, software
12 #    distributed under the License is distributed on an "AS IS" BASIS,
13 #    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #    See the License for the specific language governing permissions and
15 #    limitations under the License.
16 #
17
18 #
19 #    Description:
20 #      This file is the GNU automake template for the Nest Labs runtime
21 #      assertion library first-party (e.g. Nest Labs) software directory.
22 #
23
24 include $(abs_top_nlbuild_autotools_dir)/automake/pre.am
25
26 # Always package (e.g. for 'make dist') these subdirectories.
27
28 DIST_SUBDIRS                      = \
29     $(NULL)
30
31 # NLUNIT_TEST_SUBDIRS is not a permanent part of DIST_SUBDIRS since we do not
32 # ever want to include it in a distribution archive; however, when it's been
33 # pulled as a 'repo' module, we do want to remove it on invocation of the
34 # 'distclean' target. Consequently, we conditionally include it in DIST_SUBDIRS
35 # on invocation of 'distclean-recursive'
36
37 distclean-recursive: DIST_SUBDIRS += $(NLUNIT_TEST_SUBDIRS)
38
39 # Always build (e.g. for 'make all') these subdirectories.
40
41 SUBDIRS                           = \
42     $(NULL)
43
44 include $(abs_top_nlbuild_autotools_dir)/automake/post.am