2008-01-08 01:19:24 +01:00
|
|
|
############################################################################
|
|
|
|
# configs/sim/src/Makefile
|
2007-03-27 00:05:53 +02:00
|
|
|
#
|
2012-11-11 16:42:12 +01:00
|
|
|
# Copyright (C) 2007, 2008, 2011-2012 Gregory Nutt. All rights reserved.
|
2012-09-13 20:32:24 +02:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-03-27 00:05:53 +02: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.
|
2008-01-08 01:19:24 +01:00
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
2007-03-27 00:05:53 +02:00
|
|
|
# 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.
|
|
|
|
#
|
2008-01-08 01:19:24 +01:00
|
|
|
############################################################################
|
2007-03-27 00:05:53 +02:00
|
|
|
|
2011-09-29 18:25:21 +02:00
|
|
|
include $(TOPDIR)/Make.defs
|
2007-03-27 00:05:53 +02:00
|
|
|
|
2011-09-29 18:25:21 +02:00
|
|
|
CFLAGS += -I$(TOPDIR)/sched
|
2014-12-14 17:19:07 +01:00
|
|
|
CFLAGS += -I$(TOPDIR)/arch/sim/src
|
2007-03-27 00:05:53 +02:00
|
|
|
|
2014-04-14 00:22:22 +02:00
|
|
|
ASRCS =
|
2011-09-29 18:25:21 +02:00
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
2007-03-27 00:05:53 +02:00
|
|
|
|
2014-04-14 00:22:22 +02:00
|
|
|
CSRCS =
|
2014-12-08 17:54:58 +01:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_BOARD_INITIALIZE),y)
|
|
|
|
CSRCS += sim_boot.c
|
2015-04-15 19:00:40 +02:00
|
|
|
ifeq ($(CONFIG_SYSTEM_ZONEINFO_ROMFS),y)
|
|
|
|
CSRCS += sim_zoneinfo.c
|
|
|
|
endif
|
2014-12-08 17:54:58 +01:00
|
|
|
endif
|
|
|
|
|
2011-09-29 18:25:21 +02:00
|
|
|
ifeq ($(CONFIG_SIM_X11FB),y)
|
|
|
|
ifeq ($(CONFIG_SIM_TOUCHSCREEN),y)
|
2014-12-08 17:54:58 +01:00
|
|
|
CSRCS += sim_touchscreen.c
|
2011-09-29 18:25:21 +02:00
|
|
|
endif
|
|
|
|
endif
|
2015-04-15 19:00:40 +02:00
|
|
|
|
2011-09-29 18:25:21 +02:00
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
|
|
|
|
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
2007-03-27 00:05:53 +02:00
|
|
|
|
|
|
|
all: libboard$(LIBEXT)
|
|
|
|
|
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call ASSEMBLE, $<, $@)
|
2007-03-27 00:05:53 +02:00
|
|
|
|
|
|
|
$(COBJS) $(LINKOBJS): %$(OBJEXT): %.c
|
2008-01-08 18:06:21 +01:00
|
|
|
$(call COMPILE, $<, $@)
|
2007-03-27 00:05:53 +02:00
|
|
|
|
|
|
|
libboard$(LIBEXT): $(OBJS)
|
2012-11-17 21:44:02 +01:00
|
|
|
$(Q) $(AR) $@ # Create an empty archive
|
2011-09-29 18:25:21 +02:00
|
|
|
ifneq ($(OBJS),)
|
2012-11-15 18:43:29 +01:00
|
|
|
$(call ARCHIVE, $@, $(OBJS))
|
2011-09-29 18:25:21 +02:00
|
|
|
endif
|
2007-03-27 00:05:53 +02:00
|
|
|
|
|
|
|
.depend: Makefile $(SRCS)
|
2012-11-17 21:44:02 +01:00
|
|
|
$(Q) $(MKDEP) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
|
|
|
|
$(Q) touch $@
|
2007-03-27 00:05:53 +02:00
|
|
|
|
|
|
|
depend: .depend
|
|
|
|
|
|
|
|
clean:
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, libboard$(LIBEXT))
|
2008-01-10 14:38:13 +01:00
|
|
|
$(call CLEAN)
|
2007-03-27 00:05:53 +02:00
|
|
|
|
|
|
|
distclean: clean
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, Make.dep)
|
|
|
|
$(call DELFILE, .depend)
|
2007-03-27 00:05:53 +02:00
|
|
|
|
|
|
|
-include Make.dep
|