summaryrefslogtreecommitdiff
path: root/apps/examples
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-06 13:30:44 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-06 13:30:44 -0600
commit758b4f7053e8ed4d614fdd7eb8ea5d23c74304d3 (patch)
tree7608e1fb8503cc63be5572cd772afdca4a567881 /apps/examples
parent1b6ab008c156bdb619306c20852c838ccebc5bec (diff)
downloadnuttx-758b4f7053e8ed4d614fdd7eb8ea5d23c74304d3.tar.gz
nuttx-758b4f7053e8ed4d614fdd7eb8ea5d23c74304d3.tar.bz2
nuttx-758b4f7053e8ed4d614fdd7eb8ea5d23c74304d3.zip
Customize the program name in the generic setup that was added to each makefile that installs a program
Diffstat (limited to 'apps/examples')
-rw-r--r--apps/examples/adc/Makefile2
-rw-r--r--apps/examples/buttons/Makefile2
-rw-r--r--apps/examples/can/Makefile2
-rw-r--r--apps/examples/cc3000/Makefile2
-rw-r--r--apps/examples/configdata/Makefile2
-rw-r--r--apps/examples/cpuhog/Makefile2
-rw-r--r--apps/examples/dhcpd/Makefile2
-rw-r--r--apps/examples/discover/Makefile2
-rw-r--r--apps/examples/elf/Makefile2
-rw-r--r--apps/examples/flash_test/Makefile2
-rw-r--r--apps/examples/ftpc/Makefile2
-rw-r--r--apps/examples/ftpd/Makefile2
-rw-r--r--apps/examples/hidkbd/Makefile2
-rw-r--r--apps/examples/i2schar/Makefile2
-rw-r--r--apps/examples/igmp/Makefile2
-rw-r--r--apps/examples/json/Makefile2
-rw-r--r--apps/examples/keypadtest/Makefile2
-rw-r--r--apps/examples/lcdrw/Makefile2
-rw-r--r--apps/examples/mm/Makefile2
-rw-r--r--apps/examples/modbus/Makefile2
-rw-r--r--apps/examples/mount/Makefile2
-rwxr-xr-xapps/examples/mtdpart/Makefile2
-rw-r--r--apps/examples/netpkt/Makefile2
-rw-r--r--apps/examples/nettest/Makefile2
-rw-r--r--apps/examples/nrf24l01_term/Makefile2
-rw-r--r--apps/examples/null/Makefile2
-rw-r--r--apps/examples/nx/Makefile2
-rw-r--r--apps/examples/nxconsole/Makefile2
-rw-r--r--apps/examples/nxffs/Makefile2
-rw-r--r--apps/examples/nxflat/Makefile2
-rw-r--r--apps/examples/nxhello/Makefile2
-rw-r--r--apps/examples/nximage/Makefile2
-rw-r--r--apps/examples/nxlines/Makefile2
-rw-r--r--apps/examples/nxtext/Makefile2
-rw-r--r--apps/examples/ostest/Makefile2
-rw-r--r--apps/examples/pashello/Makefile2
-rw-r--r--apps/examples/pipe/Makefile2
-rw-r--r--apps/examples/poll/Makefile2
-rw-r--r--apps/examples/posix_spawn/Makefile2
-rw-r--r--apps/examples/pwm/Makefile2
-rw-r--r--apps/examples/qencoder/Makefile2
-rw-r--r--apps/examples/random/Makefile2
-rw-r--r--apps/examples/relays/Makefile2
-rw-r--r--apps/examples/rgmp/Makefile2
-rw-r--r--apps/examples/romfs/Makefile2
-rw-r--r--apps/examples/sendmail/Makefile2
-rw-r--r--apps/examples/serialblaster/Makefile2
-rw-r--r--apps/examples/serialrx/Makefile2
-rw-r--r--apps/examples/serloop/Makefile2
-rw-r--r--apps/examples/slcd/Makefile2
-rw-r--r--apps/examples/smart/Makefile2
-rw-r--r--apps/examples/smart_test/Makefile2
-rw-r--r--apps/examples/tcpecho/Makefile2
-rw-r--r--apps/examples/telnetd/Makefile2
-rw-r--r--apps/examples/thttpd/Makefile2
-rw-r--r--apps/examples/tiff/Makefile2
-rw-r--r--apps/examples/touchscreen/Makefile2
-rw-r--r--apps/examples/udp/Makefile2
-rw-r--r--apps/examples/usbserial/Makefile2
-rw-r--r--apps/examples/usbterm/Makefile2
-rw-r--r--apps/examples/watchdog/Makefile2
-rw-r--r--apps/examples/webserver/Makefile2
-rw-r--r--apps/examples/wget/Makefile2
-rw-r--r--apps/examples/wgetjson/Makefile2
-rw-r--r--apps/examples/xmlrpc/Makefile2
65 files changed, 65 insertions, 65 deletions
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 .