diff --git a/examples/mm/Makefile b/examples/mm/Makefile index 1a832863b..8bd21dad5 100644 --- a/examples/mm/Makefile +++ b/examples/mm/Makefile @@ -1,7 +1,7 @@ ############################################################################ # apps/examples/mm/Makefile # -# Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. +# Copyright (C) 2011-2012, 2017 Gregory Nutt. All rights reserved. # Author: Gregory Nutt # # Redistribution and use in source and binary forms, with or without @@ -37,13 +37,20 @@ # Memory Management Test +CONFIG_EXAMPLES_MM_PRIORITY ?= SCHED_PRIORITY_DEFAULT +CONFIG_EXAMPLES_MM_STACKSIZE ?= 2048 + APPNAME = mm +PRIORITY = $(CONFIG_EXAMPLES_MM_PRIORITY) +STACKSIZE = $(CONFIG_EXAMPLES_MM_STACKSIZE) + +# Hello, World! Example ASRCS = CSRCS = MAINSRC = mm_main.c -CONFIG_XYZ_PROGNAME ?= mm$(EXEEXT) -PROGNAME = $(CONFIG_XYZ_PROGNAME) +CONFIG_EXAMPLES_MM_PROGNAME ?= mm$(EXEEXT) +PROGNAME = $(CONFIG_EXAMPLES_MM_PROGNAME) include $(APPDIR)/Application.mk