apps/: In all Make.def files, append to CONFIGURED_APPS patch with the absolute path.

This commit is contained in:
Xiang Xiao 2019-10-17 11:33:59 -06:00 committed by Gregory Nutt
parent fa0aded666
commit 7808eb62d2
265 changed files with 267 additions and 267 deletions

View File

@ -104,11 +104,11 @@ may have:
This will select the apps/examples/hello in the following way: This will select the apps/examples/hello in the following way:
- The top-level make will include examples/Make.defs - The top-level make will include examples/Make.defs
- examples/Make.defs will set CONFIGURED_APPS += examples/hello - examples/Make.defs will set CONFIGURED_APPS += $(APPDIR)/examples/hello
like this: like this:
ifeq ($(CONFIG_EXAMPLES_HELLO),y) ifeq ($(CONFIG_EXAMPLES_HELLO),y)
CONFIGURED_APPS += examples/hello CONFIGURED_APPS += $(APPDIR)/examples/hello
endif endif
Example Built-In Application Example Built-In Application

View File

@ -35,6 +35,6 @@
############################################################################ ############################################################################
ifeq ($(CONFIG_BUILTIN),y) ifeq ($(CONFIG_BUILTIN),y)
CONFIGURED_APPS += builtin CONFIGURED_APPS += $(APPDIR)/builtin
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifeq ($(CONFIG_CANUTILS_CANLIB),y) ifeq ($(CONFIG_CANUTILS_CANLIB),y)
CONFIGURED_APPS += canutils/canlib CONFIGURED_APPS += $(APPDIR)/canutils/canlib
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifeq ($(CONFIG_CANUTILS_LIBCANARD),y) ifeq ($(CONFIG_CANUTILS_LIBCANARD),y)
CONFIGURED_APPS += canutils/libcanard CONFIGURED_APPS += $(APPDIR)/canutils/libcanard
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifeq ($(CONFIG_CANUTILS_LIBOBD2),y) ifeq ($(CONFIG_CANUTILS_LIBOBD2),y)
CONFIGURED_APPS += canutils/libobd2 CONFIGURED_APPS += $(APPDIR)/canutils/libobd2
endif endif

View File

@ -35,6 +35,6 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_ABNTCODI),) ifneq ($(CONFIG_EXAMPLES_ABNTCODI),)
CONFIGURED_APPS += examples/abntcodi CONFIGURED_APPS += $(APPDIR)/examples/abntcodi
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_ADC),) ifneq ($(CONFIG_EXAMPLES_ADC),)
CONFIGURED_APPS += examples/adc CONFIGURED_APPS += $(APPDIR)/examples/adc
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_ADXL372_TEST),) ifneq ($(CONFIG_EXAMPLES_ADXL372_TEST),)
CONFIGURED_APPS += examples/adxl372_test CONFIGURED_APPS += $(APPDIR)/examples/adxl372_test
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_AJOYSTICK),) ifneq ($(CONFIG_EXAMPLES_AJOYSTICK),)
CONFIGURED_APPS += examples/ajoystick CONFIGURED_APPS += $(APPDIR)/examples/ajoystick
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_ALARM),) ifneq ($(CONFIG_EXAMPLES_ALARM),)
CONFIGURED_APPS += examples/alarm CONFIGURED_APPS += $(APPDIR)/examples/alarm
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_APA102),) ifneq ($(CONFIG_EXAMPLES_APA102),)
CONFIGURED_APPS += examples/apa102 CONFIGURED_APPS += $(APPDIR)/examples/apa102
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_APDS9960),) ifneq ($(CONFIG_EXAMPLES_APDS9960),)
CONFIGURED_APPS += examples/apds9960 CONFIGURED_APPS += $(APPDIR)/examples/apds9960
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_BASTEST),) ifneq ($(CONFIG_EXAMPLES_BASTEST),)
CONFIGURED_APPS += examples/bastest CONFIGURED_APPS += $(APPDIR)/examples/bastest
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_BATTERY),) ifneq ($(CONFIG_EXAMPLES_BATTERY),)
CONFIGURED_APPS += examples/battery CONFIGURED_APPS += $(APPDIR)/examples/battery
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_BMP180),) ifneq ($(CONFIG_EXAMPLES_BMP180),)
CONFIGURED_APPS += examples/bmp180 CONFIGURED_APPS += $(APPDIR)/examples/bmp180
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_BRIDGE),) ifneq ($(CONFIG_EXAMPLES_BRIDGE),)
CONFIGURED_APPS += examples/bridge CONFIGURED_APPS += $(APPDIR)/examples/bridge
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_BUTTONS),) ifneq ($(CONFIG_EXAMPLES_BUTTONS),)
CONFIGURED_APPS += examples/buttons CONFIGURED_APPS += $(APPDIR)/examples/buttons
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_CALIB_UDELAY),) ifneq ($(CONFIG_EXAMPLES_CALIB_UDELAY),)
CONFIGURED_APPS += examples/calib_udelay CONFIGURED_APPS += $(APPDIR)/examples/calib_udelay
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_CAN),) ifneq ($(CONFIG_EXAMPLES_CAN),)
CONFIGURED_APPS += examples/can CONFIGURED_APPS += $(APPDIR)/examples/can
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_LIBCANARD),) ifneq ($(CONFIG_EXAMPLES_LIBCANARD),)
CONFIGURED_APPS += examples/canard CONFIGURED_APPS += $(APPDIR)/examples/canard
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_CCTYPE),) ifneq ($(CONFIG_EXAMPLES_CCTYPE),)
CONFIGURED_APPS += examples/cctype CONFIGURED_APPS += $(APPDIR)/examples/cctype
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_CHAT),) ifneq ($(CONFIG_EXAMPLES_CHAT),)
CONFIGURED_APPS += examples/chat CONFIGURED_APPS += $(APPDIR)/examples/chat
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_CHRONO),) ifneq ($(CONFIG_EXAMPLES_CHRONO),)
CONFIGURED_APPS += examples/chrono CONFIGURED_APPS += $(APPDIR)/examples/chrono
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_CONFIGDATA),) ifneq ($(CONFIG_EXAMPLES_CONFIGDATA),)
CONFIGURED_APPS += examples/configdata CONFIGURED_APPS += $(APPDIR)/examples/configdata
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_CPUHOG),) ifneq ($(CONFIG_EXAMPLES_CPUHOG),)
CONFIGURED_APPS += examples/cpuhog CONFIGURED_APPS += $(APPDIR)/examples/cpuhog
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_CROMFS),) ifneq ($(CONFIG_EXAMPLES_CROMFS),)
CONFIGURED_APPS += examples/cromfs CONFIGURED_APPS += $(APPDIR)/examples/cromfs
endif endif

View File

@ -1,3 +1,3 @@
ifneq ($(CONFIG_EXAMPLES_DAC),) ifneq ($(CONFIG_EXAMPLES_DAC),)
CONFIGURED_APPS += examples/dac CONFIGURED_APPS += $(APPDIR)/examples/dac
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_DHCPD),) ifneq ($(CONFIG_EXAMPLES_DHCPD),)
CONFIGURED_APPS += examples/dhcpd CONFIGURED_APPS += $(APPDIR)/examples/dhcpd
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_DHTXX),) ifneq ($(CONFIG_EXAMPLES_DHTXX),)
CONFIGURED_APPS += examples/dhtxx CONFIGURED_APPS += $(APPDIR)/examples/dhtxx
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_DISCOVER),) ifneq ($(CONFIG_EXAMPLES_DISCOVER),)
CONFIGURED_APPS += examples/discover CONFIGURED_APPS += $(APPDIR)/examples/discover
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_DJOYSTICK),) ifneq ($(CONFIG_EXAMPLES_DJOYSTICK),)
CONFIGURED_APPS += examples/djoystick CONFIGURED_APPS += $(APPDIR)/examples/djoystick
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_DSPTEST),) ifneq ($(CONFIG_EXAMPLES_DSPTEST),)
CONFIGURED_APPS += examples/dsptest CONFIGURED_APPS += $(APPDIR)/examples/dsptest
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_ELF),) ifneq ($(CONFIG_EXAMPLES_ELF),)
CONFIGURED_APPS += examples/elf CONFIGURED_APPS += $(APPDIR)/examples/elf
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifeq ($(CONFIG_EXAMPLES_EMBEDLOG),y) ifeq ($(CONFIG_EXAMPLES_EMBEDLOG),y)
CONFIGURED_APPS += examples/embedlog CONFIGURED_APPS += $(APPDIR)/examples/embedlog
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_FB),) ifneq ($(CONFIG_EXAMPLES_FB),)
CONFIGURED_APPS += examples/fb CONFIGURED_APPS += $(APPDIR)/examples/fb
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_FBOVERLAY),) ifneq ($(CONFIG_EXAMPLES_FBOVERLAY),)
CONFIGURED_APPS += examples/fboverlay CONFIGURED_APPS += $(APPDIR)/examples/fboverlay
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_FLASH_TEST),) ifneq ($(CONFIG_EXAMPLES_FLASH_TEST),)
CONFIGURED_APPS += examples/flash_test CONFIGURED_APPS += $(APPDIR)/examples/flash_test
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_FLOWC),) ifneq ($(CONFIG_EXAMPLES_FLOWC),)
CONFIGURED_APPS += examples/flowc CONFIGURED_APPS += $(APPDIR)/examples/flowc
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_FT80X),) ifneq ($(CONFIG_EXAMPLES_FT80X),)
CONFIGURED_APPS += examples/ft80x CONFIGURED_APPS += $(APPDIR)/examples/ft80x
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_FTPC),) ifneq ($(CONFIG_EXAMPLES_FTPC),)
CONFIGURED_APPS += examples/ftpc CONFIGURED_APPS += $(APPDIR)/examples/ftpc
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_FTPD),) ifneq ($(CONFIG_EXAMPLES_FTPD),)
CONFIGURED_APPS += examples/ftpd CONFIGURED_APPS += $(APPDIR)/examples/ftpd
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_GPIO),) ifneq ($(CONFIG_EXAMPLES_GPIO),)
CONFIGURED_APPS += examples/gpio CONFIGURED_APPS += $(APPDIR)/examples/gpio
endif endif

View File

@ -35,6 +35,6 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_GPS),) ifneq ($(CONFIG_EXAMPLES_GPS),)
CONFIGURED_APPS += examples/gps CONFIGURED_APPS += $(APPDIR)/examples/gps
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_HELLO),) ifneq ($(CONFIG_EXAMPLES_HELLO),)
CONFIGURED_APPS += examples/hello CONFIGURED_APPS += $(APPDIR)/examples/hello
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_HELLOXX),) ifneq ($(CONFIG_EXAMPLES_HELLOXX),)
CONFIGURED_APPS += examples/helloxx CONFIGURED_APPS += $(APPDIR)/examples/helloxx
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_HIDKBD),) ifneq ($(CONFIG_EXAMPLES_HIDKBD),)
CONFIGURED_APPS += examples/hidkbd CONFIGURED_APPS += $(APPDIR)/examples/hidkbd
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_I2SCHAR),) ifneq ($(CONFIG_EXAMPLES_I2SCHAR),)
CONFIGURED_APPS += examples/i2schar CONFIGURED_APPS += $(APPDIR)/examples/i2schar
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_I2SLOOP),) ifneq ($(CONFIG_EXAMPLES_I2SLOOP),)
CONFIGURED_APPS += examples/i2sloop CONFIGURED_APPS += $(APPDIR)/examples/i2sloop
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_IGMP),) ifneq ($(CONFIG_EXAMPLES_IGMP),)
CONFIGURED_APPS += examples/igmp CONFIGURED_APPS += $(APPDIR)/examples/igmp
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_INA219),) ifneq ($(CONFIG_EXAMPLES_INA219),)
CONFIGURED_APPS += examples/ina219 CONFIGURED_APPS += $(APPDIR)/examples/ina219
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifeq ($(CONFIG_EXAMPLES_INA226),y) ifeq ($(CONFIG_EXAMPLES_INA226),y)
CONFIGURED_APPS += examples/ina226 CONFIGURED_APPS += $(APPDIR)/examples/ina226
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifeq ($(CONFIG_EXAMPLES_INI_DUMPER),y) ifeq ($(CONFIG_EXAMPLES_INI_DUMPER),y)
CONFIGURED_APPS += examples/ini_dumper CONFIGURED_APPS += $(APPDIR)/examples/ini_dumper
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_IPFORWARD),) ifneq ($(CONFIG_EXAMPLES_IPFORWARD),)
CONFIGURED_APPS += examples/ipforward CONFIGURED_APPS += $(APPDIR)/examples/ipforward
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_JSON),) ifneq ($(CONFIG_EXAMPLES_JSON),)
CONFIGURED_APPS += examples/json CONFIGURED_APPS += $(APPDIR)/examples/json
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_LEDS),) ifneq ($(CONFIG_EXAMPLES_LEDS),)
CONFIGURED_APPS += examples/leds CONFIGURED_APPS += $(APPDIR)/examples/leds
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_LIS3DSH_READER),) ifneq ($(CONFIG_EXAMPLES_LIS3DSH_READER),)
CONFIGURED_APPS += examples/lis3dsh_reader CONFIGURED_APPS += $(APPDIR)/examples/lis3dsh_reader
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_LSM330SPI_TEST),) ifneq ($(CONFIG_EXAMPLES_LSM330SPI_TEST),)
CONFIGURED_APPS += examples/lsm330spi_test CONFIGURED_APPS += $(APPDIR)/examples/lsm330spi_test
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_LVGLDEMO),) ifneq ($(CONFIG_EXAMPLES_LVGLDEMO),)
CONFIGURED_APPS += examples/lvgldemo CONFIGURED_APPS += $(APPDIR)/examples/lvgldemo
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_MAX31855),) ifneq ($(CONFIG_EXAMPLES_MAX31855),)
CONFIGURED_APPS += examples/max31855 CONFIGURED_APPS += $(APPDIR)/examples/max31855
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_MEDIA),) ifneq ($(CONFIG_EXAMPLES_MEDIA),)
CONFIGURED_APPS += examples/media CONFIGURED_APPS += $(APPDIR)/examples/media
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_MLD),) ifneq ($(CONFIG_EXAMPLES_MLD),)
CONFIGURED_APPS += examples/mld CONFIGURED_APPS += $(APPDIR)/examples/mld
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_MLX90614),) ifneq ($(CONFIG_EXAMPLES_MLX90614),)
CONFIGURED_APPS += examples/mlx90614 CONFIGURED_APPS += $(APPDIR)/examples/mlx90614
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_MM),) ifneq ($(CONFIG_EXAMPLES_MM),)
CONFIGURED_APPS += examples/mm CONFIGURED_APPS += $(APPDIR)/examples/mm
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_MODBUS),) ifneq ($(CONFIG_EXAMPLES_MODBUS),)
CONFIGURED_APPS += examples/modbus CONFIGURED_APPS += $(APPDIR)/examples/modbus
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifeq ($(CONFIG_EXAMPLES_MODBUSMASTER),y) ifeq ($(CONFIG_EXAMPLES_MODBUSMASTER),y)
CONFIGURED_APPS += examples/modbusmaster CONFIGURED_APPS += $(APPDIR)/examples/modbusmaster
endif endif

View File

@ -34,5 +34,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_MODULE),) ifneq ($(CONFIG_EXAMPLES_MODULE),)
CONFIGURED_APPS += examples/module CONFIGURED_APPS += $(APPDIR)/examples/module
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_MOUNT),) ifneq ($(CONFIG_EXAMPLES_MOUNT),)
CONFIGURED_APPS += examples/mount CONFIGURED_APPS += $(APPDIR)/examples/mount
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_MTDPART),) ifneq ($(CONFIG_EXAMPLES_MTDPART),)
CONFIGURED_APPS += examples/mtdpart CONFIGURED_APPS += $(APPDIR)/examples/mtdpart
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_MTDRWB),) ifneq ($(CONFIG_EXAMPLES_MTDRWB),)
CONFIGURED_APPS += examples/mtdrwb CONFIGURED_APPS += $(APPDIR)/examples/mtdrwb
endif endif

View File

@ -34,5 +34,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_NETLOOP),) ifneq ($(CONFIG_EXAMPLES_NETLOOP),)
CONFIGURED_APPS += examples/netloop CONFIGURED_APPS += $(APPDIR)/examples/netloop
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_NETPKT),) ifneq ($(CONFIG_EXAMPLES_NETPKT),)
CONFIGURED_APPS += examples/netpkt CONFIGURED_APPS += $(APPDIR)/examples/netpkt
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_NETTEST),) ifneq ($(CONFIG_EXAMPLES_NETTEST),)
CONFIGURED_APPS += examples/nettest CONFIGURED_APPS += $(APPDIR)/examples/nettest
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_NRF24L01TERM),) ifneq ($(CONFIG_EXAMPLES_NRF24L01TERM),)
CONFIGURED_APPS += examples/nrf24l01_term CONFIGURED_APPS += $(APPDIR)/examples/nrf24l01_term
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_NULL),) ifneq ($(CONFIG_EXAMPLES_NULL),)
CONFIGURED_APPS += examples/null CONFIGURED_APPS += $(APPDIR)/examples/null
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_NUNCHUCK),) ifneq ($(CONFIG_EXAMPLES_NUNCHUCK),)
CONFIGURED_APPS += examples/nunchuck CONFIGURED_APPS += $(APPDIR)/examples/nunchuck
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_NX),) ifneq ($(CONFIG_EXAMPLES_NX),)
CONFIGURED_APPS += examples/nx CONFIGURED_APPS += $(APPDIR)/examples/nx
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_NXDEMO),) ifneq ($(CONFIG_EXAMPLES_NXDEMO),)
CONFIGURED_APPS += examples/nxdemo CONFIGURED_APPS += $(APPDIR)/examples/nxdemo
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_NXFLAT),) ifneq ($(CONFIG_EXAMPLES_NXFLAT),)
CONFIGURED_APPS += examples/nxflat CONFIGURED_APPS += $(APPDIR)/examples/nxflat
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_NXHELLO),) ifneq ($(CONFIG_EXAMPLES_NXHELLO),)
CONFIGURED_APPS += examples/nxhello CONFIGURED_APPS += $(APPDIR)/examples/nxhello
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_NXIMAGE),) ifneq ($(CONFIG_EXAMPLES_NXIMAGE),)
CONFIGURED_APPS += examples/nximage CONFIGURED_APPS += $(APPDIR)/examples/nximage
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_NXLINES),) ifneq ($(CONFIG_EXAMPLES_NXLINES),)
CONFIGURED_APPS += examples/nxlines CONFIGURED_APPS += $(APPDIR)/examples/nxlines
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_NXTERM),) ifneq ($(CONFIG_EXAMPLES_NXTERM),)
CONFIGURED_APPS += examples/nxterm CONFIGURED_APPS += $(APPDIR)/examples/nxterm
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_NXTEXT),) ifneq ($(CONFIG_EXAMPLES_NXTEXT),)
CONFIGURED_APPS += examples/nxtext CONFIGURED_APPS += $(APPDIR)/examples/nxtext
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_OBD2),) ifneq ($(CONFIG_EXAMPLES_OBD2),)
CONFIGURED_APPS += examples/obd2 CONFIGURED_APPS += $(APPDIR)/examples/obd2
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_ONESHOT),) ifneq ($(CONFIG_EXAMPLES_ONESHOT),)
CONFIGURED_APPS += examples/oneshot CONFIGURED_APPS += $(APPDIR)/examples/oneshot
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_PASHELLO),) ifneq ($(CONFIG_EXAMPLES_PASHELLO),)
CONFIGURED_APPS += examples/pashello CONFIGURED_APPS += $(APPDIR)/examples/pashello
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_PCA9635),) ifneq ($(CONFIG_EXAMPLES_PCA9635),)
CONFIGURED_APPS += examples/pca9635 CONFIGURED_APPS += $(APPDIR)/examples/pca9635
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_PDCURSES),) ifneq ($(CONFIG_EXAMPLES_PDCURSES),)
CONFIGURED_APPS += examples/pdcurses CONFIGURED_APPS += $(APPDIR)/examples/pdcurses
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_PFIEEE802154),) ifneq ($(CONFIG_EXAMPLES_PFIEEE802154),)
CONFIGURED_APPS += examples/pf_ieee802154 CONFIGURED_APPS += $(APPDIR)/examples/pf_ieee802154
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_PIPE),) ifneq ($(CONFIG_EXAMPLES_PIPE),)
CONFIGURED_APPS += examples/pipe CONFIGURED_APPS += $(APPDIR)/examples/pipe
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_POLL),) ifneq ($(CONFIG_EXAMPLES_POLL),)
CONFIGURED_APPS += examples/poll CONFIGURED_APPS += $(APPDIR)/examples/poll
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_POPEN),) ifneq ($(CONFIG_EXAMPLES_POPEN),)
CONFIGURED_APPS += examples/popen CONFIGURED_APPS += $(APPDIR)/examples/popen
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_POSIXSPAWN),) ifneq ($(CONFIG_EXAMPLES_POSIXSPAWN),)
CONFIGURED_APPS += examples/posix_spawn CONFIGURED_APPS += $(APPDIR)/examples/posix_spawn
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_POWERLED),) ifneq ($(CONFIG_EXAMPLES_POWERLED),)
CONFIGURED_APPS += examples/powerled CONFIGURED_APPS += $(APPDIR)/examples/powerled
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_POWERMONITOR),) ifneq ($(CONFIG_EXAMPLES_POWERMONITOR),)
CONFIGURED_APPS += examples/powermonitor CONFIGURED_APPS += $(APPDIR)/examples/powermonitor
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_PPPD),) ifneq ($(CONFIG_EXAMPLES_PPPD),)
CONFIGURED_APPS += examples/pppd CONFIGURED_APPS += $(APPDIR)/examples/pppd
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_PTYTEST),) ifneq ($(CONFIG_EXAMPLES_PTYTEST),)
CONFIGURED_APPS += examples/pty_test CONFIGURED_APPS += $(APPDIR)/examples/pty_test
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_PWFB),) ifneq ($(CONFIG_EXAMPLES_PWFB),)
CONFIGURED_APPS += examples/pwfb CONFIGURED_APPS += $(APPDIR)/examples/pwfb
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_PWLINES),) ifneq ($(CONFIG_EXAMPLES_PWLINES),)
CONFIGURED_APPS += examples/pwlines CONFIGURED_APPS += $(APPDIR)/examples/pwlines
endif endif

View File

@ -35,5 +35,5 @@
############################################################################ ############################################################################
ifneq ($(CONFIG_EXAMPLES_PWM),) ifneq ($(CONFIG_EXAMPLES_PWM),)
CONFIGURED_APPS += examples/pwm CONFIGURED_APPS += $(APPDIR)/examples/pwm
endif endif

Some files were not shown because too many files have changed in this diff Show More