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:
- 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:
ifeq ($(CONFIG_EXAMPLES_HELLO),y)
CONFIGURED_APPS += examples/hello
CONFIGURED_APPS += $(APPDIR)/examples/hello
endif
Example Built-In Application

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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