Make sure that APPNAME is defined in all Makefiles that generate applications
This commit is contained in:
parent
a9d57ca022
commit
d2aa24ad88
@ -37,6 +37,8 @@
|
|||||||
|
|
||||||
# CONFIGDATA Unit Test
|
# CONFIGDATA Unit Test
|
||||||
|
|
||||||
|
APPNAME = configdata
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS =
|
CSRCS =
|
||||||
MAINSRC = configdata_main.c
|
MAINSRC = configdata_main.c
|
||||||
|
@ -37,6 +37,8 @@
|
|||||||
|
|
||||||
# USB Host HID keyboard Example
|
# USB Host HID keyboard Example
|
||||||
|
|
||||||
|
APPNAME = hidkbd
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS =
|
CSRCS =
|
||||||
MAINSRC = hidkbd_main.c
|
MAINSRC = hidkbd_main.c
|
||||||
|
@ -37,6 +37,8 @@
|
|||||||
|
|
||||||
# Memory Management Test
|
# Memory Management Test
|
||||||
|
|
||||||
|
APPNAME = mm
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS =
|
CSRCS =
|
||||||
MAINSRC = mm_main.c
|
MAINSRC = mm_main.c
|
||||||
|
@ -37,6 +37,8 @@
|
|||||||
|
|
||||||
# mount() test
|
# mount() test
|
||||||
|
|
||||||
|
APPNAME = mount
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS = ramdisk.c
|
CSRCS = ramdisk.c
|
||||||
MAINSRC = mount_main.c
|
MAINSRC = mount_main.c
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
# apps/examples/mtdpart/Makefile
|
# apps/examples/mtdpart/Makefile
|
||||||
#
|
#
|
||||||
# Copyright (C) 2013 Gregory Nutt. All rights reserved.
|
# Copyright (C) 2013, 2016 Gregory Nutt. All rights reserved.
|
||||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
@ -35,7 +35,9 @@
|
|||||||
|
|
||||||
-include $(TOPDIR)/Make.defs
|
-include $(TOPDIR)/Make.defs
|
||||||
|
|
||||||
# Hello, World! Example
|
# MTD Partition Example
|
||||||
|
|
||||||
|
APPNAME = mtdpart
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS =
|
CSRCS =
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* examples/mtdpart/mtdpart_main.c
|
* examples/mtdpart/mtdpart_main.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2013, 2016 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
@ -127,10 +127,6 @@ static uint8_t g_simflash[MTDPART_BUFSIZE];
|
|||||||
extern FAR struct mtd_dev_s *mtdpart_archinitialize(void);
|
extern FAR struct mtd_dev_s *mtdpart_archinitialize(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* Private Functions
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Public Functions
|
* Public Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
# apps/examplex/mtdrwb/Makefile
|
# apps/examplex/mtdrwb/Makefile
|
||||||
#
|
#
|
||||||
# Copyright (C) 2014 Gregory Nutt. All rights reserved.
|
# Copyright (C) 2014, 2016 Gregory Nutt. All rights reserved.
|
||||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
@ -35,7 +35,9 @@
|
|||||||
|
|
||||||
-include $(TOPDIR)/Make.defs
|
-include $(TOPDIR)/Make.defs
|
||||||
|
|
||||||
# Hello, World! Example
|
# MTD R/W buffer test Example
|
||||||
|
|
||||||
|
APPNAME = mtdrwb
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS =
|
CSRCS =
|
||||||
|
@ -37,6 +37,8 @@
|
|||||||
|
|
||||||
# NuttShell (NSH) Example
|
# NuttShell (NSH) Example
|
||||||
|
|
||||||
|
APPNAME = nsh
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS =
|
CSRCS =
|
||||||
MAINSRC = nsh_main.c
|
MAINSRC = nsh_main.c
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
# apps/examples/nxffs/Makefile
|
# apps/examples/nxffs/Makefile
|
||||||
#
|
#
|
||||||
# Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
|
# Copyright (C) 2011-2012, 2016 Gregory Nutt. All rights reserved.
|
||||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
@ -35,7 +35,9 @@
|
|||||||
|
|
||||||
-include $(TOPDIR)/Make.defs
|
-include $(TOPDIR)/Make.defs
|
||||||
|
|
||||||
# Hello, World! Example
|
# NXFFS file system example
|
||||||
|
|
||||||
|
APPNAME = nxffs
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS =
|
CSRCS =
|
||||||
|
@ -37,6 +37,8 @@
|
|||||||
|
|
||||||
# Pascal Add-On Example
|
# Pascal Add-On Example
|
||||||
|
|
||||||
|
APPNAME = pashello
|
||||||
|
|
||||||
ifeq ($(WINTOOL),y)
|
ifeq ($(WINTOOL),y)
|
||||||
INCDIROPT = -w
|
INCDIROPT = -w
|
||||||
endif
|
endif
|
||||||
|
@ -37,6 +37,8 @@
|
|||||||
|
|
||||||
# Pipe Example
|
# Pipe Example
|
||||||
|
|
||||||
|
APPNAME = pipe
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS = transfer_test.c interlock_test.c redirect_test.c
|
CSRCS = transfer_test.c interlock_test.c redirect_test.c
|
||||||
MAINSRC = pipe_main.c
|
MAINSRC = pipe_main.c
|
||||||
|
@ -37,6 +37,8 @@
|
|||||||
|
|
||||||
# The smallest thing you can build -- the NULL example.
|
# The smallest thing you can build -- the NULL example.
|
||||||
|
|
||||||
|
APPNAME = rgmp
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS =
|
CSRCS =
|
||||||
MAINSRC = rgmp_main.c
|
MAINSRC = rgmp_main.c
|
||||||
|
@ -37,6 +37,8 @@
|
|||||||
|
|
||||||
# Sendmail SMTP Example
|
# Sendmail SMTP Example
|
||||||
|
|
||||||
|
APPNAME = sendmail
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS =
|
CSRCS =
|
||||||
MAINSRC = sendmail_main.c
|
MAINSRC = sendmail_main.c
|
||||||
|
@ -37,6 +37,8 @@
|
|||||||
|
|
||||||
# Mindlessly simple console loopack test
|
# Mindlessly simple console loopack test
|
||||||
|
|
||||||
|
APPNAME = serloop
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS =
|
CSRCS =
|
||||||
MAINSRC = serloop_main.c
|
MAINSRC = serloop_main.c
|
||||||
|
@ -37,6 +37,8 @@
|
|||||||
|
|
||||||
# SMART file system stress test
|
# SMART file system stress test
|
||||||
|
|
||||||
|
APPNAME = smart
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS =
|
CSRCS =
|
||||||
MAINSRC = smart_main.c
|
MAINSRC = smart_main.c
|
||||||
|
@ -35,6 +35,8 @@
|
|||||||
|
|
||||||
-include $(TOPDIR)/Make.defs
|
-include $(TOPDIR)/Make.defs
|
||||||
|
|
||||||
|
APPNAME = uavcan
|
||||||
|
|
||||||
MAINSRC = uavcan_main.cxx
|
MAINSRC = uavcan_main.cxx
|
||||||
|
|
||||||
CXXFLAGS += -I$(TOPDIR)/include/apps
|
CXXFLAGS += -I$(TOPDIR)/include/apps
|
||||||
|
@ -41,6 +41,8 @@ ASRCS =
|
|||||||
CSRCS =
|
CSRCS =
|
||||||
MAINSRC = wget_main.c
|
MAINSRC = wget_main.c
|
||||||
|
|
||||||
|
APPNAME = wget
|
||||||
|
|
||||||
CONFIG_XYZ_PROGNAME ?= wget$(EXEEXT)
|
CONFIG_XYZ_PROGNAME ?= wget$(EXEEXT)
|
||||||
PROGNAME = $(CONFIG_XYZ_PROGNAME)
|
PROGNAME = $(CONFIG_XYZ_PROGNAME)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user