|
| 1 | +# |
| 2 | +# Copyright (c) 2020 Project CHIP Authors |
| 3 | +# Copyright (c) 2014-2017 Nest Labs, Inc. |
| 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 header for the CHIP Data Model layer |
| 21 | +# library sources. |
| 22 | +# |
| 23 | +# These sources are shared by other SDK makefiles and consequently |
| 24 | +# must be anchored relative to the top build directory. |
| 25 | +# |
| 26 | + |
| 27 | +CHIP_BUILD_DATA_MODEL_SOURCE_FILES = \ |
| 28 | + @top_builddir@/src/app/gen/gen-callback-stubs.c \ |
| 29 | + @top_builddir@/src/app/gen/gen-command-handler.c \ |
| 30 | + @top_builddir@/src/app/gen/gen-specs.c \ |
| 31 | + @top_builddir@/src/app/plugin/binding-mock/mock.c \ |
| 32 | + @top_builddir@/src/app/plugin/cluster-server-basic/basic-server.c \ |
| 33 | + @top_builddir@/src/app/plugin/cluster-server-identify/identify-server.c \ |
| 34 | + @top_builddir@/src/app/plugin/cluster-server-level-control/level-control-server.c \ |
| 35 | + @top_builddir@/src/app/plugin/cluster-server-on-off/on-off-server.c \ |
| 36 | + @top_builddir@/src/app/plugin/codec-simple/codec-simple.c \ |
| 37 | + @top_builddir@/src/app/plugin/core-api/core-api.c \ |
| 38 | + @top_builddir@/src/app/plugin/core-data-model/zcl-data-model.c \ |
| 39 | + @top_builddir@/src/app/plugin/core-message-dispatch/dispatch.c \ |
| 40 | + @top_builddir@/src/app/plugin/core-message-dispatch/general-command-handler.c \ |
| 41 | + $(NULL) |
| 42 | + |
| 43 | +# Excluding this one for now because it has #include syntax that does |
| 44 | +# not actually compile |
| 45 | +# plugin/core-data-model/zcl-struct.c |
| 46 | + |
| 47 | +# Excluding this one because it seems to rely on stuff that's not in our tree |
| 48 | +# plugin/binding-silabs/silabs.c |
0 commit comments