2011-03-20 19:18:19 +01:00
|
|
|
############################################################################
|
|
|
|
# apps/examples/ostest/Makefile
|
|
|
|
#
|
2014-08-07 20:35:24 +02:00
|
|
|
# Copyright (C) 2007-2012, 2014 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)/.config
|
|
|
|
-include $(TOPDIR)/Make.defs
|
|
|
|
include $(APPDIR)/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 =
|
|
|
|
CSRCS = dev_null.c restart.c
|
|
|
|
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)
|
2014-09-07 16:43:01 +02:00
|
|
|
CSRCS += fpu.c
|
2012-02-24 22:34:55 +01:00
|
|
|
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)
|
2014-09-26 15:04:34 +02:00
|
|
|
CSRCS += cancel.c cond.c mutex.c sem.c semtimed.c barrier.c
|
2014-09-28 21:02:36 +02:00
|
|
|
ifeq ($(CONFIG_FS_NAMED_SEMAPHORES),y)
|
|
|
|
CSRCS += nsem.c
|
|
|
|
endif
|
2011-03-20 19:18:19 +01:00
|
|
|
ifneq ($(CONFIG_RR_INTERVAL),0)
|
2014-09-07 16:43:01 +02:00
|
|
|
CSRCS += roundrobin.c
|
2011-03-20 19:18:19 +01:00
|
|
|
endif # CONFIG_RR_INTERVAL
|
|
|
|
ifeq ($(CONFIG_MUTEX_TYPES),y)
|
2014-09-07 16:43:01 +02:00
|
|
|
CSRCS += rmutex.c
|
2011-03-20 19:18:19 +01:00
|
|
|
endif # CONFIG_MUTEX_TYPES
|
|
|
|
endif # CONFIG_DISABLE_PTHREAD
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_DISABLE_SIGNALS),y)
|
2015-05-12 20:39:21 +02:00
|
|
|
CSRCS += sigprocmask.c sighand.c signest.c
|
2011-03-20 19:18:19 +01:00
|
|
|
ifneq ($(CONFIG_DISABLE_PTHREAD),y)
|
2014-09-07 16:43:01 +02:00
|
|
|
CSRCS += timedwait.c
|
2011-03-20 19:18:19 +01:00
|
|
|
endif # CONFIG_DISABLE_PTHREAD
|
|
|
|
endif # CONFIG_DISABLE_SIGNALS
|
|
|
|
|
|
|
|
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
|
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_SIGNALS),y)
|
|
|
|
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
|
|
|
|
endif # CONFIG_DISABLE_SIGNALS
|
|
|
|
|
2014-09-07 16:43:01 +02:00
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
2014-09-07 15:19:19 +02:00
|
|
|
MAINOBJ = $(MAINSRC:.c=$(OBJEXT))
|
2011-03-20 19:18:19 +01:00
|
|
|
|
2014-09-07 16:43:01 +02:00
|
|
|
SRCS = $(ASRCS) $(CSRCS) $(MAINSRC)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
2011-03-20 19:18:19 +01:00
|
|
|
|
2014-09-07 15:05:54 +02:00
|
|
|
ifneq ($(CONFIG_BUILD_KERNEL),y)
|
|
|
|
OBJS += $(MAINOBJ)
|
|
|
|
endif
|
|
|
|
|
2012-11-12 16:22:27 +01:00
|
|
|
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
2014-09-07 16:43:01 +02:00
|
|
|
BIN = ..\..\libapps$(LIBEXT)
|
2012-11-12 16:22:27 +01:00
|
|
|
else
|
2011-04-10 18:08:08 +02:00
|
|
|
ifeq ($(WINTOOL),y)
|
2014-09-07 16:43:01 +02:00
|
|
|
BIN = ..\\..\\libapps$(LIBEXT)
|
2011-04-10 18:08:08 +02:00
|
|
|
else
|
2014-09-07 16:43:01 +02:00
|
|
|
BIN = ../../libapps$(LIBEXT)
|
2012-11-12 16:22:27 +01:00
|
|
|
endif
|
2011-04-10 18:08:08 +02:00
|
|
|
endif
|
2011-03-20 19:18:19 +01:00
|
|
|
|
2014-09-06 21:19:02 +02:00
|
|
|
ifeq ($(WINTOOL),y)
|
|
|
|
INSTALL_DIR = "${shell cygpath -w $(BIN_DIR)}"
|
|
|
|
else
|
|
|
|
INSTALL_DIR = $(BIN_DIR)
|
|
|
|
endif
|
|
|
|
|
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)
|
|
|
|
|
2014-09-07 16:43:01 +02:00
|
|
|
ROOTDEPPATH = --dep-path .
|
2011-03-20 19:18:19 +01:00
|
|
|
|
|
|
|
# Common build
|
|
|
|
|
2014-09-07 16:43:01 +02:00
|
|
|
VPATH =
|
2011-03-20 19:18:19 +01:00
|
|
|
|
|
|
|
all: .built
|
2011-04-01 17:18:02 +02:00
|
|
|
.PHONY: clean depend distclean
|
2011-03-20 19:18:19 +01:00
|
|
|
|
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
|
|
|
$(call ASSEMBLE, $<, $@)
|
|
|
|
|
2014-09-11 14:48:11 +02:00
|
|
|
$(COBJS) $(MAINOBJ): %$(OBJEXT): %.c
|
2011-03-20 19:18:19 +01:00
|
|
|
$(call COMPILE, $<, $@)
|
|
|
|
|
2011-04-01 17:18:02 +02:00
|
|
|
.built: $(OBJS)
|
2012-11-15 18:43:29 +01:00
|
|
|
$(call ARCHIVE, $(BIN), $(OBJS))
|
2011-03-20 19:18:19 +01:00
|
|
|
@touch .built
|
2011-03-24 01:28:50 +01:00
|
|
|
|
2014-09-06 18:42:03 +02:00
|
|
|
ifeq ($(CONFIG_BUILD_KERNEL),y)
|
2014-09-07 15:09:22 +02:00
|
|
|
$(BIN_DIR)$(DELIM)$(PROGNAME): $(OBJS) $(MAINOBJ)
|
2014-09-06 21:01:44 +02:00
|
|
|
@echo "LD: $(PROGNAME)"
|
2014-09-07 15:12:55 +02:00
|
|
|
$(Q) $(LD) $(LDELFFLAGS) $(LDLIBPATH) -o $(INSTALL_DIR)$(DELIM)$(PROGNAME) $(ARCHCRT0OBJ) $(MAINOBJ) $(LDLIBS)
|
2014-09-07 15:15:59 +02:00
|
|
|
$(Q) $(NM) -u $(INSTALL_DIR)$(DELIM)$(PROGNAME)
|
2014-09-06 18:42:03 +02:00
|
|
|
|
2014-09-06 21:01:44 +02:00
|
|
|
install: $(BIN_DIR)$(DELIM)$(PROGNAME)
|
2014-09-06 18:42:03 +02:00
|
|
|
|
2014-09-06 18:54:58 +02:00
|
|
|
else
|
2014-09-06 18:05:01 +02:00
|
|
|
install:
|
|
|
|
|
2014-09-06 18:42:03 +02:00
|
|
|
endif
|
|
|
|
|
2013-06-13 01:32:00 +02:00
|
|
|
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
2012-12-24 14:15:57 +01:00
|
|
|
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
|
2012-03-22 01:51:01 +01:00
|
|
|
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
|
|
|
|
|
2012-12-23 23:17:09 +01:00
|
|
|
context: $(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat
|
|
|
|
else
|
|
|
|
context:
|
|
|
|
endif
|
2011-03-24 03:26:25 +01:00
|
|
|
|
2011-03-20 19:18:19 +01:00
|
|
|
.depend: Makefile $(SRCS)
|
2012-11-12 00:44:31 +01:00
|
|
|
@$(MKDEP) $(ROOTDEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
|
2011-03-20 19:18:19 +01:00
|
|
|
@touch $@
|
|
|
|
|
|
|
|
depend: .depend
|
|
|
|
|
|
|
|
clean:
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, .built)
|
2011-03-20 19:18:19 +01:00
|
|
|
$(call CLEAN)
|
|
|
|
|
|
|
|
distclean: clean
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, Make.dep)
|
|
|
|
$(call DELFILE, .depend)
|
2011-03-20 19:18:19 +01:00
|
|
|
|
|
|
|
-include Make.dep
|