Skip to content

Commit ef904ab

Browse files
authored
Add example sources to pretty. (#430)
1 parent 0a9545e commit ef904ab

File tree

3 files changed

+81
-0
lines changed

3 files changed

+81
-0
lines changed

Makefile.am

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ include $(abs_top_nlbuild_autotools_dir)/automake/pre.am
3131
AM_MAKEFLAGS = --no-print-directory
3232

3333
SUBDIRS = \
34+
examples \
3435
third_party \
3536
src \
3637
tests \

configure.ac

+1
Original file line numberDiff line numberDiff line change
@@ -1994,6 +1994,7 @@ fi
19941994
#
19951995
AC_CONFIG_FILES([
19961996
Makefile
1997+
examples/Makefile
19971998
third_party/Makefile
19981999
third_party/lwip/Makefile
19992000
src/Makefile

examples/Makefile.am

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
#
2+
# Copyright (c) 2020 Project CHIP Authors
3+
# Copyright (c) 2014-2018 Nest Labs, Inc.
4+
# Copyright (c) 2018 Google LLC
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
#
18+
19+
#
20+
# Description:
21+
# This file is the GNU automake template for the CHIP SDK.
22+
#
23+
24+
include $(abs_top_nlbuild_autotools_dir)/automake/pre.am
25+
26+
SUBDIRS = \
27+
$(NULL)
28+
29+
EXTRA_DIST = \
30+
$(NULL)
31+
32+
PRETTY_FILES = \
33+
lock-app/efr32/include/AppEvent.h \
34+
lock-app/efr32/include/LEDWidget.h \
35+
lock-app/efr32/include/AppTask.h \
36+
lock-app/efr32/include/CHIPProjectConfig.h \
37+
lock-app/efr32/include/sample_qr_code.h \
38+
lock-app/efr32/include/BoltLockManager.h \
39+
lock-app/efr32/include/AppConfig.h \
40+
lock-app/efr32/include/ble-configuration.h \
41+
lock-app/efr32/include/init_board.h \
42+
lock-app/efr32/include/init_mcu.h \
43+
lock-app/efr32/include/hal-config-app-common.h \
44+
lock-app/efr32/include/init_lcd.h \
45+
lock-app/efr32/include/FreeRTOSConfig.h \
46+
lock-app/efr32/include/hal-config.h \
47+
lock-app/efr32/include/board_features.h \
48+
lock-app/efr32/include/mbedtls-config.h \
49+
lock-app/efr32/include/ButtonHandler.h \
50+
lock-app/efr32/src/main.cpp \
51+
lock-app/efr32/src/display/init_lcd.c \
52+
lock-app/efr32/src/display/sample_qr_code.c \
53+
lock-app/efr32/src/AppTask.cpp \
54+
lock-app/efr32/src/init_mcu.c \
55+
lock-app/efr32/src/init_board.c \
56+
lock-app/efr32/src/LEDWidget.cpp \
57+
lock-app/efr32/src/ButtonHandler.cpp \
58+
lock-app/nrf5/main/BoltLockManager.cpp \
59+
lock-app/nrf5/main/include/OpenThreadConfig.h \
60+
lock-app/nrf5/main/include/nrf_log_ctrl_internal.h \
61+
lock-app/nrf5/main/include/AppEvent.h \
62+
lock-app/nrf5/main/include/LEDWidget.h \
63+
lock-app/nrf5/main/include/AppTask.h \
64+
lock-app/nrf5/main/include/CHIPProjectConfig.h \
65+
lock-app/nrf5/main/include/freertos_tasks_c_additions.h \
66+
lock-app/nrf5/main/include/BoltLockManager.h \
67+
lock-app/nrf5/main/include/FreeRTOSConfig.h \
68+
lock-app/nrf5/main/include/app_config.h \
69+
lock-app/nrf5/main/main.cpp \
70+
lock-app/nrf5/main/AppTask.cpp \
71+
lock-app/nrf5/main/LEDWidget.cpp \
72+
lock-app/nrf5/main/ldscripts/chip-nrf52840-lock-example.ld \
73+
lock-app/nrf5/main/support/AltPrintf.c \
74+
lock-app/nrf5/main/support/FreeRTOSNewlibLockSupport.c \
75+
lock-app/nrf5/main/support/nRF5Sbrk.c \
76+
lock-app/nrf5/main/support/CXXExceptionStubs.cpp \
77+
$(NULL)
78+
79+
include $(abs_top_nlbuild_autotools_dir)/automake/post.am

0 commit comments

Comments
 (0)