From 758b4f7053e8ed4d614fdd7eb8ea5d23c74304d3 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 6 Sep 2014 13:30:44 -0600 Subject: Customize the program name in the generic setup that was added to each makefile that installs a program --- apps/examples/adc/Makefile | 2 +- apps/examples/buttons/Makefile | 2 +- apps/examples/can/Makefile | 2 +- apps/examples/cc3000/Makefile | 2 +- apps/examples/configdata/Makefile | 2 +- apps/examples/cpuhog/Makefile | 2 +- apps/examples/dhcpd/Makefile | 2 +- apps/examples/discover/Makefile | 2 +- apps/examples/elf/Makefile | 2 +- apps/examples/flash_test/Makefile | 2 +- apps/examples/ftpc/Makefile | 2 +- apps/examples/ftpd/Makefile | 2 +- apps/examples/hidkbd/Makefile | 2 +- apps/examples/i2schar/Makefile | 2 +- apps/examples/igmp/Makefile | 2 +- apps/examples/json/Makefile | 2 +- apps/examples/keypadtest/Makefile | 2 +- apps/examples/lcdrw/Makefile | 2 +- apps/examples/mm/Makefile | 2 +- apps/examples/modbus/Makefile | 2 +- apps/examples/mount/Makefile | 2 +- apps/examples/mtdpart/Makefile | 2 +- apps/examples/netpkt/Makefile | 2 +- apps/examples/nettest/Makefile | 2 +- apps/examples/nrf24l01_term/Makefile | 2 +- apps/examples/null/Makefile | 2 +- apps/examples/nx/Makefile | 2 +- apps/examples/nxconsole/Makefile | 2 +- apps/examples/nxffs/Makefile | 2 +- apps/examples/nxflat/Makefile | 2 +- apps/examples/nxhello/Makefile | 2 +- apps/examples/nximage/Makefile | 2 +- apps/examples/nxlines/Makefile | 2 +- apps/examples/nxtext/Makefile | 2 +- apps/examples/ostest/Makefile | 2 +- apps/examples/pashello/Makefile | 2 +- apps/examples/pipe/Makefile | 2 +- apps/examples/poll/Makefile | 2 +- apps/examples/posix_spawn/Makefile | 2 +- apps/examples/pwm/Makefile | 2 +- apps/examples/qencoder/Makefile | 2 +- apps/examples/random/Makefile | 2 +- apps/examples/relays/Makefile | 2 +- apps/examples/rgmp/Makefile | 2 +- apps/examples/romfs/Makefile | 2 +- apps/examples/sendmail/Makefile | 2 +- apps/examples/serialblaster/Makefile | 2 +- apps/examples/serialrx/Makefile | 2 +- apps/examples/serloop/Makefile | 2 +- apps/examples/slcd/Makefile | 2 +- apps/examples/smart/Makefile | 2 +- apps/examples/smart_test/Makefile | 2 +- apps/examples/tcpecho/Makefile | 2 +- apps/examples/telnetd/Makefile | 2 +- apps/examples/thttpd/Makefile | 2 +- apps/examples/tiff/Makefile | 2 +- apps/examples/touchscreen/Makefile | 2 +- apps/examples/udp/Makefile | 2 +- apps/examples/usbserial/Makefile | 2 +- apps/examples/usbterm/Makefile | 2 +- apps/examples/watchdog/Makefile | 2 +- apps/examples/webserver/Makefile | 2 +- apps/examples/wget/Makefile | 2 +- apps/examples/wgetjson/Makefile | 2 +- apps/examples/xmlrpc/Makefile | 2 +- apps/graphics/screenshot/Makefile | 2 +- apps/netutils/thttpd/Makefile | 2 +- apps/system/cdcacm/Makefile | 2 +- apps/system/composite/Makefile | 2 +- apps/system/flash_eraseall/Makefile | 2 +- apps/system/free/Makefile | 2 +- apps/system/hex2bin/Makefile | 2 +- apps/system/i2c/Makefile | 2 +- apps/system/install/Makefile | 2 +- apps/system/mdio/Makefile | 2 +- apps/system/nxplayer/Makefile | 2 +- apps/system/poweroff/Makefile | 2 +- apps/system/prun/Makefile | 2 +- apps/system/ramtest/Makefile | 2 +- apps/system/ramtron/Makefile | 2 +- apps/system/sdcard/Makefile | 2 +- apps/system/sudoku/Makefile | 2 +- apps/system/sysinfo/Makefile | 2 +- apps/system/usbmsc/Makefile | 2 +- apps/system/vi/Makefile | 2 +- apps/system/zmodem/Makefile | 2 +- 86 files changed, 86 insertions(+), 86 deletions(-) (limited to 'apps') diff --git a/apps/examples/adc/Makefile b/apps/examples/adc/Makefile index 2f20ba4b2..c90e265fa 100644 --- a/apps/examples/adc/Makefile +++ b/apps/examples/adc/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= adc$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/buttons/Makefile b/apps/examples/buttons/Makefile index eb8b1b7ff..8d28625de 100644 --- a/apps/examples/buttons/Makefile +++ b/apps/examples/buttons/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= buttons$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/can/Makefile b/apps/examples/can/Makefile index 6979a829c..4dea6656d 100644 --- a/apps/examples/can/Makefile +++ b/apps/examples/can/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= can$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/cc3000/Makefile b/apps/examples/cc3000/Makefile index e0c612d2d..339e11d3e 100644 --- a/apps/examples/cc3000/Makefile +++ b/apps/examples/cc3000/Makefile @@ -74,7 +74,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= cc3000$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/configdata/Makefile b/apps/examples/configdata/Makefile index e9f9f1542..668f3c7c9 100644 --- a/apps/examples/configdata/Makefile +++ b/apps/examples/configdata/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= configdata$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/cpuhog/Makefile b/apps/examples/cpuhog/Makefile index 0ea799a96..afad49791 100644 --- a/apps/examples/cpuhog/Makefile +++ b/apps/examples/cpuhog/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= cpuhog$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/dhcpd/Makefile b/apps/examples/dhcpd/Makefile index 45fba2397..6c4543bec 100644 --- a/apps/examples/dhcpd/Makefile +++ b/apps/examples/dhcpd/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= dhcpd$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/discover/Makefile b/apps/examples/discover/Makefile index 127903956..10188fb71 100644 --- a/apps/examples/discover/Makefile +++ b/apps/examples/discover/Makefile @@ -71,7 +71,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= discover$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/elf/Makefile b/apps/examples/elf/Makefile index 7f1df32e1..7a10a7e40 100644 --- a/apps/examples/elf/Makefile +++ b/apps/examples/elf/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= discover$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . --dep-path tests diff --git a/apps/examples/flash_test/Makefile b/apps/examples/flash_test/Makefile index 77deaa66d..f0c675c2e 100644 --- a/apps/examples/flash_test/Makefile +++ b/apps/examples/flash_test/Makefile @@ -73,7 +73,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= flash_test$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/ftpc/Makefile b/apps/examples/ftpc/Makefile index 75729d3fc..10c2f97ad 100644 --- a/apps/examples/ftpc/Makefile +++ b/apps/examples/ftpc/Makefile @@ -68,7 +68,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= ftpc$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/ftpd/Makefile b/apps/examples/ftpd/Makefile index daf514adb..ba7721dba 100644 --- a/apps/examples/ftpd/Makefile +++ b/apps/examples/ftpd/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= ftpd$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/hidkbd/Makefile b/apps/examples/hidkbd/Makefile index 2c719671d..41da3800a 100644 --- a/apps/examples/hidkbd/Makefile +++ b/apps/examples/hidkbd/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= hidkbd$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/i2schar/Makefile b/apps/examples/i2schar/Makefile index 7f1846414..e0817d99e 100644 --- a/apps/examples/i2schar/Makefile +++ b/apps/examples/i2schar/Makefile @@ -70,7 +70,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= i2schar$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/igmp/Makefile b/apps/examples/igmp/Makefile index c1847a73a..c1265295c 100644 --- a/apps/examples/igmp/Makefile +++ b/apps/examples/igmp/Makefile @@ -68,7 +68,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= igmp$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/json/Makefile b/apps/examples/json/Makefile index 26eec111f..0c806ee77 100644 --- a/apps/examples/json/Makefile +++ b/apps/examples/json/Makefile @@ -68,7 +68,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= json$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/keypadtest/Makefile b/apps/examples/keypadtest/Makefile index 4920abf64..c207c6d9e 100644 --- a/apps/examples/keypadtest/Makefile +++ b/apps/examples/keypadtest/Makefile @@ -70,7 +70,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= keypadtest$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/lcdrw/Makefile b/apps/examples/lcdrw/Makefile index 90c2c9cae..a6ee72afb 100644 --- a/apps/examples/lcdrw/Makefile +++ b/apps/examples/lcdrw/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= lcdrw$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/mm/Makefile b/apps/examples/mm/Makefile index 546d446ab..8cbb5e4af 100644 --- a/apps/examples/mm/Makefile +++ b/apps/examples/mm/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= mm$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/modbus/Makefile b/apps/examples/modbus/Makefile index 35dd5e420..3e5b5b378 100644 --- a/apps/examples/modbus/Makefile +++ b/apps/examples/modbus/Makefile @@ -70,7 +70,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= modbus$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/mount/Makefile b/apps/examples/mount/Makefile index fe49ad1f1..48da4fe1f 100644 --- a/apps/examples/mount/Makefile +++ b/apps/examples/mount/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= mount$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/mtdpart/Makefile b/apps/examples/mtdpart/Makefile index 37823f2af..cec032ac3 100755 --- a/apps/examples/mtdpart/Makefile +++ b/apps/examples/mtdpart/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= mtdpart$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/netpkt/Makefile b/apps/examples/netpkt/Makefile index 6b933fe01..91f610fa1 100644 --- a/apps/examples/netpkt/Makefile +++ b/apps/examples/netpkt/Makefile @@ -70,7 +70,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= netpkt$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/nettest/Makefile b/apps/examples/nettest/Makefile index d45161fe7..b828d6691 100644 --- a/apps/examples/nettest/Makefile +++ b/apps/examples/nettest/Makefile @@ -89,7 +89,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= nettest$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/nrf24l01_term/Makefile b/apps/examples/nrf24l01_term/Makefile index a41c01727..e837ad1aa 100644 --- a/apps/examples/nrf24l01_term/Makefile +++ b/apps/examples/nrf24l01_term/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= nrf24l01_term$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/null/Makefile b/apps/examples/null/Makefile index 133ecf3c0..eed20f334 100644 --- a/apps/examples/null/Makefile +++ b/apps/examples/null/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= null$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/nx/Makefile b/apps/examples/nx/Makefile index a2352c46d..15c86b339 100644 --- a/apps/examples/nx/Makefile +++ b/apps/examples/nx/Makefile @@ -67,7 +67,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= nx$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/nxconsole/Makefile b/apps/examples/nxconsole/Makefile index 910a40122..a3930352e 100644 --- a/apps/examples/nxconsole/Makefile +++ b/apps/examples/nxconsole/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= nxconsole$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/nxffs/Makefile b/apps/examples/nxffs/Makefile index 1167faeb7..bd8cd330e 100644 --- a/apps/examples/nxffs/Makefile +++ b/apps/examples/nxffs/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= nxffs$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/nxflat/Makefile b/apps/examples/nxflat/Makefile index 9e648fa32..9273bcea1 100644 --- a/apps/examples/nxflat/Makefile +++ b/apps/examples/nxflat/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= nxflat$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/nxhello/Makefile b/apps/examples/nxhello/Makefile index 52e0b8265..00af43a0e 100644 --- a/apps/examples/nxhello/Makefile +++ b/apps/examples/nxhello/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= nxhello$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/nximage/Makefile b/apps/examples/nximage/Makefile index 33dff36ed..b087c7466 100644 --- a/apps/examples/nximage/Makefile +++ b/apps/examples/nximage/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= nximage$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/nxlines/Makefile b/apps/examples/nxlines/Makefile index 1b1d36f76..8f7e0f49e 100644 --- a/apps/examples/nxlines/Makefile +++ b/apps/examples/nxlines/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= nxlines$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/nxtext/Makefile b/apps/examples/nxtext/Makefile index 287adc690..88d4e6161 100644 --- a/apps/examples/nxtext/Makefile +++ b/apps/examples/nxtext/Makefile @@ -68,7 +68,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= nxtext$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/ostest/Makefile b/apps/examples/ostest/Makefile index 09286c640..63dd00fec 100644 --- a/apps/examples/ostest/Makefile +++ b/apps/examples/ostest/Makefile @@ -119,7 +119,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= ostest$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/pashello/Makefile b/apps/examples/pashello/Makefile index aae97dc9c..4beb38819 100644 --- a/apps/examples/pashello/Makefile +++ b/apps/examples/pashello/Makefile @@ -72,7 +72,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= pashello$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/pipe/Makefile b/apps/examples/pipe/Makefile index 0f1734517..d7b9c411e 100644 --- a/apps/examples/pipe/Makefile +++ b/apps/examples/pipe/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= pipe$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/poll/Makefile b/apps/examples/poll/Makefile index 7804ed4c7..f484492a5 100644 --- a/apps/examples/poll/Makefile +++ b/apps/examples/poll/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= poll$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/posix_spawn/Makefile b/apps/examples/posix_spawn/Makefile index 7a7a1609f..5fcca0a89 100644 --- a/apps/examples/posix_spawn/Makefile +++ b/apps/examples/posix_spawn/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= posix_spawn$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . --dep-path filesystem diff --git a/apps/examples/pwm/Makefile b/apps/examples/pwm/Makefile index 60c31ff0b..1c3399fb1 100644 --- a/apps/examples/pwm/Makefile +++ b/apps/examples/pwm/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= pwm$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/qencoder/Makefile b/apps/examples/qencoder/Makefile index afd1174c2..93ce320c1 100644 --- a/apps/examples/qencoder/Makefile +++ b/apps/examples/qencoder/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= qencoder$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/random/Makefile b/apps/examples/random/Makefile index fb02245c0..0a73fd9c2 100644 --- a/apps/examples/random/Makefile +++ b/apps/examples/random/Makefile @@ -68,7 +68,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= random$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/relays/Makefile b/apps/examples/relays/Makefile index 8360328ba..211823237 100644 --- a/apps/examples/relays/Makefile +++ b/apps/examples/relays/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= relays$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/rgmp/Makefile b/apps/examples/rgmp/Makefile index 7adc7d0e0..34a3485f6 100644 --- a/apps/examples/rgmp/Makefile +++ b/apps/examples/rgmp/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= rgmp$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/romfs/Makefile b/apps/examples/romfs/Makefile index d99395799..c508cd1da 100644 --- a/apps/examples/romfs/Makefile +++ b/apps/examples/romfs/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= romfs$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/sendmail/Makefile b/apps/examples/sendmail/Makefile index f3a34283c..68f8c69e2 100644 --- a/apps/examples/sendmail/Makefile +++ b/apps/examples/sendmail/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= sendmail$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/serialblaster/Makefile b/apps/examples/serialblaster/Makefile index c699394f0..2eb55a8ef 100644 --- a/apps/examples/serialblaster/Makefile +++ b/apps/examples/serialblaster/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= serialblaster$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/serialrx/Makefile b/apps/examples/serialrx/Makefile index fb8b9b3f1..201aca2d6 100644 --- a/apps/examples/serialrx/Makefile +++ b/apps/examples/serialrx/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= serialrx$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/serloop/Makefile b/apps/examples/serloop/Makefile index 2003f4a17..b93748d72 100644 --- a/apps/examples/serloop/Makefile +++ b/apps/examples/serloop/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= serloop$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/slcd/Makefile b/apps/examples/slcd/Makefile index fc3e1630c..464800690 100644 --- a/apps/examples/slcd/Makefile +++ b/apps/examples/slcd/Makefile @@ -70,7 +70,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= slcd$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/smart/Makefile b/apps/examples/smart/Makefile index 9a292b456..6a67d6138 100644 --- a/apps/examples/smart/Makefile +++ b/apps/examples/smart/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= smart$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/smart_test/Makefile b/apps/examples/smart_test/Makefile index 9c0284089..469925648 100644 --- a/apps/examples/smart_test/Makefile +++ b/apps/examples/smart_test/Makefile @@ -73,7 +73,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= smart_test$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/tcpecho/Makefile b/apps/examples/tcpecho/Makefile index aedf94b90..71534d9d3 100644 --- a/apps/examples/tcpecho/Makefile +++ b/apps/examples/tcpecho/Makefile @@ -71,7 +71,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= tcpecho$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/telnetd/Makefile b/apps/examples/telnetd/Makefile index d9d3a2fc6..9c0f912bb 100644 --- a/apps/examples/telnetd/Makefile +++ b/apps/examples/telnetd/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= telnetd$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/thttpd/Makefile b/apps/examples/thttpd/Makefile index 3416a2fed..26d860461 100644 --- a/apps/examples/thttpd/Makefile +++ b/apps/examples/thttpd/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= thttpd$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/tiff/Makefile b/apps/examples/tiff/Makefile index e04f881d1..769ac7cf1 100644 --- a/apps/examples/tiff/Makefile +++ b/apps/examples/tiff/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= tiff$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/touchscreen/Makefile b/apps/examples/touchscreen/Makefile index 77630a7b5..88eac7a92 100644 --- a/apps/examples/touchscreen/Makefile +++ b/apps/examples/touchscreen/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= touchscreen$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/udp/Makefile b/apps/examples/udp/Makefile index c2cf76e47..e56e800a9 100644 --- a/apps/examples/udp/Makefile +++ b/apps/examples/udp/Makefile @@ -86,7 +86,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= udp$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/usbserial/Makefile b/apps/examples/usbserial/Makefile index 68f3bfac4..381b5783a 100644 --- a/apps/examples/usbserial/Makefile +++ b/apps/examples/usbserial/Makefile @@ -63,7 +63,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= usbserial$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/usbterm/Makefile b/apps/examples/usbterm/Makefile index 7cd63dde7..8ba9bc4a6 100644 --- a/apps/examples/usbterm/Makefile +++ b/apps/examples/usbterm/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= usbterm$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/watchdog/Makefile b/apps/examples/watchdog/Makefile index 36b108931..a5e1bb606 100644 --- a/apps/examples/watchdog/Makefile +++ b/apps/examples/watchdog/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= watchdog$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/webserver/Makefile b/apps/examples/webserver/Makefile index a6c520079..85c5fbe49 100644 --- a/apps/examples/webserver/Makefile +++ b/apps/examples/webserver/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= webserver$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/wget/Makefile b/apps/examples/wget/Makefile index 889f8e5f0..92e15c106 100644 --- a/apps/examples/wget/Makefile +++ b/apps/examples/wget/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= wget$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/wgetjson/Makefile b/apps/examples/wgetjson/Makefile index 214b79347..b7431cf12 100644 --- a/apps/examples/wgetjson/Makefile +++ b/apps/examples/wgetjson/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= wgetjson$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/examples/xmlrpc/Makefile b/apps/examples/xmlrpc/Makefile index ad6e2564a..c2ce6aae9 100644 --- a/apps/examples/xmlrpc/Makefile +++ b/apps/examples/xmlrpc/Makefile @@ -71,7 +71,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= xmlrpc$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/graphics/screenshot/Makefile b/apps/graphics/screenshot/Makefile index 02b1a14a4..31dcbba87 100644 --- a/apps/graphics/screenshot/Makefile +++ b/apps/graphics/screenshot/Makefile @@ -68,7 +68,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= screenshot$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/netutils/thttpd/Makefile b/apps/netutils/thttpd/Makefile index 8f341779f..07492dced 100644 --- a/apps/netutils/thttpd/Makefile +++ b/apps/netutils/thttpd/Makefile @@ -68,7 +68,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= thttpd$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/cdcacm/Makefile b/apps/system/cdcacm/Makefile index a9e260750..be9ca2861 100644 --- a/apps/system/cdcacm/Makefile +++ b/apps/system/cdcacm/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= cdcacm$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/composite/Makefile b/apps/system/composite/Makefile index ecc3e9a71..bd233f4cc 100644 --- a/apps/system/composite/Makefile +++ b/apps/system/composite/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= composite$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/flash_eraseall/Makefile b/apps/system/flash_eraseall/Makefile index eac6c9532..df521af35 100644 --- a/apps/system/flash_eraseall/Makefile +++ b/apps/system/flash_eraseall/Makefile @@ -78,7 +78,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= flash_eraseall$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/free/Makefile b/apps/system/free/Makefile index 4bddd7a8e..f155db19b 100644 --- a/apps/system/free/Makefile +++ b/apps/system/free/Makefile @@ -74,7 +74,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= free$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/hex2bin/Makefile b/apps/system/hex2bin/Makefile index d150fa1a0..ffbfcf444 100644 --- a/apps/system/hex2bin/Makefile +++ b/apps/system/hex2bin/Makefile @@ -72,7 +72,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= hex2bin$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/i2c/Makefile b/apps/system/i2c/Makefile index c14d88890..7c66dcf30 100644 --- a/apps/system/i2c/Makefile +++ b/apps/system/i2c/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= i2c$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/install/Makefile b/apps/system/install/Makefile index e455c3360..df1ab3fe8 100644 --- a/apps/system/install/Makefile +++ b/apps/system/install/Makefile @@ -78,7 +78,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= install$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/mdio/Makefile b/apps/system/mdio/Makefile index f25441430..faff0e24d 100644 --- a/apps/system/mdio/Makefile +++ b/apps/system/mdio/Makefile @@ -70,7 +70,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= mdio$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/nxplayer/Makefile b/apps/system/nxplayer/Makefile index 1d45fe2b9..05a91ca1b 100644 --- a/apps/system/nxplayer/Makefile +++ b/apps/system/nxplayer/Makefile @@ -80,7 +80,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= nxplayer$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/poweroff/Makefile b/apps/system/poweroff/Makefile index 43d5025fa..69a6c1734 100644 --- a/apps/system/poweroff/Makefile +++ b/apps/system/poweroff/Makefile @@ -78,7 +78,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= poweroff$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/prun/Makefile b/apps/system/prun/Makefile index 52ad17b61..8f640582c 100644 --- a/apps/system/prun/Makefile +++ b/apps/system/prun/Makefile @@ -84,7 +84,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= prun$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/ramtest/Makefile b/apps/system/ramtest/Makefile index 68a1a6d65..6d2f9cc3e 100644 --- a/apps/system/ramtest/Makefile +++ b/apps/system/ramtest/Makefile @@ -71,7 +71,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= ramtest$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/ramtron/Makefile b/apps/system/ramtron/Makefile index b88e70d30..2ebdf9cf8 100644 --- a/apps/system/ramtron/Makefile +++ b/apps/system/ramtron/Makefile @@ -78,7 +78,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= ramtron$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/sdcard/Makefile b/apps/system/sdcard/Makefile index 0e9a96603..91aa5268a 100644 --- a/apps/system/sdcard/Makefile +++ b/apps/system/sdcard/Makefile @@ -78,7 +78,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= sdcard$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/sudoku/Makefile b/apps/system/sudoku/Makefile index bc2e79512..cc16da134 100644 --- a/apps/system/sudoku/Makefile +++ b/apps/system/sudoku/Makefile @@ -74,7 +74,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= sudoku$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/sysinfo/Makefile b/apps/system/sysinfo/Makefile index e563adc30..92e3725c8 100644 --- a/apps/system/sysinfo/Makefile +++ b/apps/system/sysinfo/Makefile @@ -79,7 +79,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= sysinfo$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/usbmsc/Makefile b/apps/system/usbmsc/Makefile index 42da35650..17b5ae295 100644 --- a/apps/system/usbmsc/Makefile +++ b/apps/system/usbmsc/Makefile @@ -64,7 +64,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= usbmsc$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/vi/Makefile b/apps/system/vi/Makefile index 040f1255a..d8111f722 100644 --- a/apps/system/vi/Makefile +++ b/apps/system/vi/Makefile @@ -75,7 +75,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= vi$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . diff --git a/apps/system/zmodem/Makefile b/apps/system/zmodem/Makefile index 0ff3899af..ded531381 100644 --- a/apps/system/zmodem/Makefile +++ b/apps/system/zmodem/Makefile @@ -74,7 +74,7 @@ else INSTALL_DIR = $(BIN_DIR) endif -CONFIG_XYZ_PROGNAME ?= xyz$(EXEEXT) +CONFIG_XYZ_PROGNAME ?= zmodem$(EXEEXT) PROGNAME = $(CONFIG_XYZ_PROGNAME) ROOTDEPPATH = --dep-path . -- cgit v1.2.3