Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / third_party / nlassert / repo / include / Makefile.am
1 #
2 #    Copyright 2015-2016 Nest Labs Inc. All Rights Reserved.
3 #
4 #    Licensed under the Apache License, Version 2.0 (the "License");
5 #    you may not use this file except in compliance with the License.
6 #    You may obtain a copy of the License at
7 #
8 #    http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #    Unless required by applicable law or agreed to in writing, software
11 #    distributed under the License is distributed on an "AS IS" BASIS,
12 #    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #    See the License for the specific language governing permissions and
14 #    limitations under the License.
15 #
16 #    Description:
17 #      This file is the GNU automake template for the Nest Labs
18 #      runtime assertion library public headers.
19 #
20
21 include $(abs_top_nlbuild_autotools_dir)/automake/pre.am
22
23 # Package public headers that need no additional transforms on installation.
24
25 include_HEADERS =             \
26     nlassert.h                \
27     nlassert-internal.h       \
28     nlassert-nonproduction.h  \
29     nlassert-production.h     \
30     $(NULL)
31
32 # Package public headers, for Standard C Library workalike
33 # functionality, that require additional relocation transform on
34 # installation.
35
36 nlassert_stdc_source_dirstem                 = stdc
37 nlassert_stdc_destination_dirstem            = stdc
38
39 nlassert_stdc_header_sources                 = \
40     $(nlassert_stdc_source_dirstem)/assert.h   \
41     $(NULL)
42
43 nlassert_stdcdir                             = \
44     $(includedir)/$(nlassert_stdc_destination_dirstem)
45
46 dist_nlassert_stdc_HEADERS                   = \
47     $(nlassert_stdc_header_sources)
48
49 install-headers: install-data
50
51 include $(abs_top_nlbuild_autotools_dir)/automake/post.am