nuttx-apps/interpreters/hello/Makefile

15 lines
357 B
Makefile
Raw Normal View History

2024-11-16 15:36:57 +01:00
include $(APPDIR)/Make.defs
# Custom Hello built-in application info
PROGNAME = $(CONFIG_CUSTOM_APPS_CUSTOM_HELLO_PROGNAME)
PRIORITY = $(CONFIG_CUSTOM_APPS_CUSTOM_HELLO_PRIORITY)
STACKSIZE = $(CONFIG_CUSTOM_APPS_CUSTOM_HELLO_STACKSIZE)
MODULE = $(CONFIG_CUSTOM_APPS_CUSTOM_HELLO)
# Custom Hello
MAINSRC = CustomHello.c
include $(APPDIR)/Application.mk