2011-03-20 19:18:19 +01:00
|
|
|
############################################################################
|
|
|
|
# apps/examples/ostest/Makefile
|
|
|
|
#
|
2017-01-24 16:15:42 +01:00
|
|
|
# Copyright (C) 2007-2012, 2014, 2017 Gregory Nutt. All rights reserved.
|
2012-02-24 22:34:55 +01:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
2011-03-20 19:18:19 +01:00
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
-include $(TOPDIR)/Make.defs
|
|
|
|
|
2012-03-22 01:51:01 +01:00
|
|
|
# ostest built-in application info
|
|
|
|
|
2014-09-07 16:43:01 +02:00
|
|
|
APPNAME = ostest
|
|
|
|
PRIORITY = SCHED_PRIORITY_DEFAULT
|
|
|
|
STACKSIZE = 2048
|
2012-03-22 01:51:01 +01:00
|
|
|
|
2011-03-20 19:18:19 +01:00
|
|
|
# NuttX OS Test
|
|
|
|
|
2014-09-07 16:43:01 +02:00
|
|
|
ASRCS =
|
2017-01-24 16:15:42 +01:00
|
|
|
CSRCS = dev_null.c restart.c sigprocmask.c sighand.c signest.c
|
2014-09-07 16:43:01 +02:00
|
|
|
MAINSRC = ostest_main.c
|
2011-03-20 19:18:19 +01:00
|
|
|
|
2012-02-24 22:34:55 +01:00
|
|
|
ifeq ($(CONFIG_ARCH_FPU),y)
|
2016-12-29 18:47:09 +01:00
|
|
|
ifneq ($(CONFIG_EXAMPLES_OSTEST_FPUTESTDISABLE),y)
|
2014-09-07 16:43:01 +02:00
|
|
|
CSRCS += fpu.c
|
2012-02-24 22:34:55 +01:00
|
|
|
endif
|
2016-12-29 18:47:09 +01:00
|
|
|
endif
|
2012-02-24 22:34:55 +01:00
|
|
|
|
2017-02-09 17:58:51 +01:00
|
|
|
ifneq ($(CONFIG_STDIO_DISABLE_BUFFERING),y)
|
|
|
|
CSRCS += setvbuf.c
|
|
|
|
endif
|
|
|
|
|
2016-03-11 21:02:00 +01:00
|
|
|
ifeq ($(CONFIG_TLS),y)
|
|
|
|
CSRCS += tls.c
|
|
|
|
endif
|
|
|
|
|
2014-10-05 21:24:03 +02:00
|
|
|
ifeq ($(CONFIG_EXAMPLES_OSTEST_AIO),y)
|
|
|
|
CSRCS += aio.c
|
|
|
|
endif
|
|
|
|
|
2013-01-13 19:53:00 +01:00
|
|
|
ifeq ($(CONFIG_SCHED_WAITPID),y)
|
2014-09-07 16:43:01 +02:00
|
|
|
CSRCS += waitpid.c
|
2013-01-13 19:53:00 +01:00
|
|
|
endif
|
|
|
|
|
2011-03-20 19:18:19 +01:00
|
|
|
ifneq ($(CONFIG_DISABLE_PTHREAD),y)
|
2017-03-27 14:55:51 +02:00
|
|
|
CSRCS += cancel.c cond.c mutex.c sem.c semtimed.c barrier.c timedwait.c
|
2017-04-07 15:30:52 +02:00
|
|
|
CSRCS += pthread_rwlock.c
|
2017-04-10 15:20:48 +02:00
|
|
|
CSRCS += pthread_rwlock_cancel.c
|
2017-03-27 14:55:51 +02:00
|
|
|
|
2017-04-10 15:20:48 +02:00
|
|
|
ifeq ($(CONFIG_PTHREAD_CLEANUP),y)
|
|
|
|
CSRCS += pthread_cleanup.c
|
2017-03-27 14:55:51 +02:00
|
|
|
endif
|
2015-07-24 21:50:31 +02:00
|
|
|
|
2017-04-10 15:20:48 +02:00
|
|
|
ifneq ($(CONFIG_PTHREAD_MUTEX_UNSAFE),y)
|
|
|
|
CSRCS += robust.c
|
2014-09-28 21:02:36 +02:00
|
|
|
endif
|
2015-07-24 21:50:31 +02:00
|
|
|
|
2017-03-27 17:08:00 +02:00
|
|
|
ifeq ($(CONFIG_PTHREAD_MUTEX_TYPES),y)
|
2014-09-07 16:43:01 +02:00
|
|
|
CSRCS += rmutex.c
|
2015-07-24 21:50:31 +02:00
|
|
|
endif
|
|
|
|
|
2017-04-10 15:20:48 +02:00
|
|
|
ifeq ($(CONFIG_FS_NAMED_SEMAPHORES),y)
|
|
|
|
CSRCS += nsem.c
|
|
|
|
endif
|
|
|
|
|
2015-07-24 21:50:31 +02:00
|
|
|
ifneq ($(CONFIG_RR_INTERVAL),0)
|
|
|
|
CSRCS += roundrobin.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_SCHED_SPORADIC),y)
|
|
|
|
CSRCS += sporadic.c
|
|
|
|
endif
|
2011-03-20 19:18:19 +01:00
|
|
|
endif # CONFIG_DISABLE_PTHREAD
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_DISABLE_MQUEUE),y)
|
|
|
|
ifneq ($(CONFIG_DISABLE_PTHREAD),y)
|
2014-09-07 16:43:01 +02:00
|
|
|
CSRCS += mqueue.c timedmqueue.c
|
2011-03-20 19:18:19 +01:00
|
|
|
endif # CONFIG_DISABLE_PTHREAD
|
|
|
|
endif # CONFIG_DISABLE_MQUEUE
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_DISABLE_POSIX_TIMERS),y)
|
2014-09-07 16:43:01 +02:00
|
|
|
CSRCS += posixtimer.c
|
2015-12-30 23:29:21 +01:00
|
|
|
ifeq ($(CONFIG_SIG_EVTHREAD),y)
|
|
|
|
CSRCS += sigev_thread.c
|
|
|
|
endif
|
2011-03-20 19:18:19 +01:00
|
|
|
endif
|
|
|
|
|
2013-01-07 22:41:20 +01:00
|
|
|
ifeq ($(CONFIG_ARCH_HAVE_VFORK),y)
|
2013-02-08 23:53:14 +01:00
|
|
|
ifeq ($(CONFIG_SCHED_WAITPID),y)
|
2014-09-07 16:43:01 +02:00
|
|
|
CSRCS += vfork.c
|
2013-01-07 22:41:20 +01:00
|
|
|
endif
|
2013-02-08 23:53:14 +01:00
|
|
|
endif
|
2013-01-07 22:41:20 +01:00
|
|
|
|
2011-03-20 19:18:19 +01:00
|
|
|
ifneq ($(CONFIG_DISABLE_PTHREAD),y)
|
|
|
|
ifeq ($(CONFIG_PRIORITY_INHERITANCE),y)
|
2014-09-07 16:43:01 +02:00
|
|
|
CSRCS += prioinherit.c
|
2011-03-20 19:18:19 +01:00
|
|
|
endif # CONFIG_PRIORITY_INHERITANCE
|
|
|
|
endif # CONFIG_DISABLE_PTHREAD
|
|
|
|
|
2014-09-06 21:30:44 +02:00
|
|
|
CONFIG_XYZ_PROGNAME ?= ostest$(EXEEXT)
|
2014-09-06 21:19:02 +02:00
|
|
|
PROGNAME = $(CONFIG_XYZ_PROGNAME)
|
|
|
|
|
2015-09-05 19:37:38 +02:00
|
|
|
include $(APPDIR)/Application.mk
|