Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / third_party / nlio / repo / third_party / nlbuild-autotools / repo / automake / pre / macros / foreigndeps.am
1 #
2 #    Copyright (c) 2020 nlbuild-autotools Authors. 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
17 #
18 #    Description:
19 #      This file is the automake header for building foreign make
20 #      (that is, outside of the current make directory) dependencies.
21 #
22 #      This defines placeholder make variables that can and should be
23 #      overridden by project make files.
24 #
25
26 # The user-supported and -visible variables for foreign make
27 # dependencies are:
28 #
29 #   * NLFOREIGN_FILE_DEPENDENCIES
30 #
31 #       A list of absolute or relative file paths to the current directory
32 #       of the form '<DIR>/<TARGET>' where '$(MAKE) -C <DIR> <TARGET>'
33 #       will produce and satisfy the desired dependency expected by
34 #       the current make file.
35 #
36 #   * NLFOREIGN_SUBDIR_DEPENDENCIES
37 #
38 #       A list of absolute or relative subdirectory paths to the
39 #       current directory of the form '<DIR>' where '$(MAKE) -C <DIR>
40 #       <TARGET>' will produce and satisfy the desired dependencies
41 #       expected by the current make file.
42
43 NLFOREIGN_FILE_DEPENDENCIES   ?= 
44
45 NLFOREIGN_SUBDIR_DEPENDENCIES ?= 
46
47
48
49