2011-03-31 12:59:29 +08:00
|
|
|
############################################################################
|
|
|
|
# syscall/Makefile
|
|
|
|
#
|
2013-03-07 03:56:32 +08:00
|
|
|
# Copyright (C) 2011-2013 Gregory Nutt. All rights reserved.
|
2012-09-14 02:32:24 +08:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
2011-03-31 12:59:29 +08: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
|
2013-03-07 03:56:32 +08:00
|
|
|
# notice, this list of conditions and the following disclaimer.
|
2011-03-31 12:59:29 +08:00
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
2013-03-07 03:56:32 +08:00
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
2011-03-31 12:59:29 +08:00
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
2013-03-07 03:56:32 +08:00
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
2011-03-31 12:59:29 +08:00
|
|
|
#
|
|
|
|
# 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-11-30 06:27:22 +08:00
|
|
|
DELIM ?= $(strip /)
|
|
|
|
|
2012-11-18 02:54:53 +08:00
|
|
|
include proxies$(DELIM)Make.defs
|
|
|
|
include stubs$(DELIM)Make.defs
|
2011-03-31 12:59:29 +08:00
|
|
|
|
2017-03-17 01:40:03 +08:00
|
|
|
MKSYSCALL = "$(TOPDIR)$(DELIM)tools$(DELIM)mksyscall$(HOSTEXEEXT)"
|
2012-11-18 02:54:53 +08:00
|
|
|
CSVFILE = "$(TOPDIR)$(DELIM)syscall$(DELIM)syscall.csv"
|
2011-03-31 12:59:29 +08:00
|
|
|
|
2013-03-07 03:56:32 +08:00
|
|
|
STUB_SRCS += syscall_funclookup.c syscall_stublookup.c syscall_nparms.c
|
2011-04-04 20:43:35 +08:00
|
|
|
|
2014-04-14 06:22:22 +08:00
|
|
|
ASRCS =
|
2011-03-31 12:59:29 +08:00
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
|
|
|
|
|
|
|
PROXY_OBJS = $(PROXY_SRCS:.c=$(OBJEXT))
|
|
|
|
STUB_OBJS = $(STUB_SRCS:.c=$(OBJEXT))
|
|
|
|
|
|
|
|
CSRCS = $(PROXY_SRCS) $(STUB_SRCS)
|
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
|
|
|
|
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
|
|
|
|
2013-03-20 07:40:07 +08:00
|
|
|
ROOTDEPPATH = --dep-path .
|
2011-04-03 03:04:44 +08:00
|
|
|
PROXYDEPPATH = --dep-path proxies
|
|
|
|
STUBDEPPATH = --dep-path stubs
|
2011-03-31 12:59:29 +08:00
|
|
|
VPATH = proxies:stubs
|
|
|
|
|
|
|
|
BIN1 = libproxies$(LIBEXT)
|
|
|
|
BIN2 = libstubs$(LIBEXT)
|
|
|
|
|
2011-04-02 05:36:17 +08:00
|
|
|
all: $(BIN1) $(BIN2)
|
2011-04-04 00:43:35 +08:00
|
|
|
.PHONY: context depend clean distclean
|
2011-03-31 12:59:29 +08:00
|
|
|
|
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
|
|
|
$(call ASSEMBLE, $<, $@)
|
|
|
|
|
|
|
|
$(COBJS): %$(OBJEXT): %.c
|
|
|
|
$(call COMPILE, $<, $@)
|
|
|
|
|
|
|
|
$(BIN1): $(PROXY_OBJS)
|
2012-11-16 01:43:29 +08:00
|
|
|
$(call ARCHIVE, $@, $(PROXY_OBJS))
|
2011-03-31 12:59:29 +08:00
|
|
|
|
|
|
|
$(BIN2): $(STUB_OBJS)
|
2013-03-07 22:27:47 +08:00
|
|
|
$(call ARCHIVE, $@, $(STUB_OBJS))
|
2011-03-31 12:59:29 +08:00
|
|
|
|
2020-03-23 02:15:29 +08:00
|
|
|
Make.dep: Makefile $(SRCS)
|
2012-11-12 02:36:28 +08:00
|
|
|
$(Q) $(MKDEP) $(ROOTDEPPATH) $(PROXYDEPPATH) $(STUBDEPPATH) \
|
2020-03-23 02:15:29 +08:00
|
|
|
"$(CC)" -- $(CFLAGS) -- $(SRCS) >$@
|
2011-03-31 12:59:29 +08:00
|
|
|
|
2020-03-23 02:15:29 +08:00
|
|
|
depend: Make.dep
|
2011-03-31 12:59:29 +08:00
|
|
|
|
2011-04-04 00:43:35 +08:00
|
|
|
.context: syscall.csv
|
2018-07-23 20:44:31 +08:00
|
|
|
$(Q) $(MAKE) -C $(TOPDIR)$(DELIM)tools -f Makefile.host mksyscall
|
2012-11-12 02:36:28 +08:00
|
|
|
$(Q) (cd proxies; $(MKSYSCALL) -p $(CSVFILE);)
|
|
|
|
$(Q) (cd stubs; $(MKSYSCALL) -s $(CSVFILE);)
|
|
|
|
$(Q) touch $@
|
2011-03-31 12:59:29 +08:00
|
|
|
|
2018-07-23 20:44:31 +08:00
|
|
|
context: .context
|
2011-03-31 12:59:29 +08:00
|
|
|
|
|
|
|
clean:
|
2012-11-20 23:47:41 +08:00
|
|
|
$(call DELFILE, $(BIN1))
|
|
|
|
$(call DELFILE, $(BIN2))
|
2011-04-02 23:25:22 +08:00
|
|
|
ifneq ($(OBJEXT),)
|
2012-11-20 23:47:41 +08:00
|
|
|
$(call DELFILE, proxies$(DELIM)*$(OBJEXT))
|
|
|
|
$(call DELFILE, stubs$(DELIM)*$(OBJEXT))
|
2011-04-02 09:23:08 +08:00
|
|
|
endif
|
2011-03-31 12:59:29 +08:00
|
|
|
$(call CLEAN)
|
|
|
|
|
|
|
|
distclean: clean
|
2012-11-20 23:47:41 +08:00
|
|
|
$(call DELFILE, .context)
|
|
|
|
$(call DELFILE, Make.dep)
|
|
|
|
$(call DELFILE, proxies$(DELIM)*.c)
|
|
|
|
$(call DELFILE, stubs$(DELIM)*.c)
|
2011-03-31 12:59:29 +08:00
|
|
|
|
|
|
|
-include Make.dep
|