15 lines
357 B
Makefile
15 lines
357 B
Makefile
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
|