2011-03-31 06:59:29 +02:00
|
|
|
############################################################################
|
|
|
|
# syscall/Makefile
|
|
|
|
#
|
2024-09-11 12:11:27 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
2021-02-18 11:05:52 +01:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2011-03-31 06:59:29 +02:00
|
|
|
#
|
2021-02-18 11:05:52 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-31 06:59:29 +02:00
|
|
|
#
|
2021-02-18 11:05:52 +01:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2011-03-31 06:59:29 +02:00
|
|
|
#
|
|
|
|
###########################################################################
|
|
|
|
|
2020-05-18 21:42:11 +02:00
|
|
|
include $(TOPDIR)/Make.defs
|
2012-11-29 23:27:22 +01:00
|
|
|
|
2020-05-20 19:11:16 +02:00
|
|
|
include proxies/Make.defs
|
|
|
|
include stubs/Make.defs
|
2020-07-22 15:21:42 +02:00
|
|
|
include wraps/Make.defs
|
2011-03-31 06:59:29 +02:00
|
|
|
|
2017-03-16 18:40:03 +01:00
|
|
|
MKSYSCALL = "$(TOPDIR)$(DELIM)tools$(DELIM)mksyscall$(HOSTEXEEXT)"
|
2012-11-17 19:54:53 +01:00
|
|
|
CSVFILE = "$(TOPDIR)$(DELIM)syscall$(DELIM)syscall.csv"
|
2011-03-31 06:59:29 +02:00
|
|
|
|
2022-03-14 17:05:41 +01:00
|
|
|
STUB_SRCS += syscall_names.c
|
|
|
|
|
2020-07-22 15:21:42 +02:00
|
|
|
ifeq ($(CONFIG_SCHED_INSTRUMENTATION_SYSCALL),y)
|
|
|
|
ifeq ($(CONFIG_LIB_SYSCALL),y)
|
|
|
|
PROXY_SRCS += syscall_names.c
|
|
|
|
else
|
|
|
|
WRAP_SRCS += syscall_names.c
|
|
|
|
endif
|
|
|
|
endif
|
2020-07-07 07:56:04 +02:00
|
|
|
STUB_SRCS += syscall_stublookup.c
|
2011-04-04 14:43:35 +02:00
|
|
|
|
2011-03-31 06:59:29 +02:00
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
|
|
|
|
|
|
|
PROXY_OBJS = $(PROXY_SRCS:.c=$(OBJEXT))
|
|
|
|
STUB_OBJS = $(STUB_SRCS:.c=$(OBJEXT))
|
2020-07-22 15:21:42 +02:00
|
|
|
WRAP_OBJS = $(WRAP_SRCS:.c=$(OBJEXT))
|
2011-03-31 06:59:29 +02:00
|
|
|
|
2022-04-04 06:01:19 +02:00
|
|
|
CSRCS = $(sort $(PROXY_SRCS) $(STUB_SRCS) $(WRAP_SRCS))
|
2011-03-31 06:59:29 +02:00
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
|
|
|
|
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
|
|
|
|
2011-04-02 21:04:44 +02:00
|
|
|
PROXYDEPPATH = --dep-path proxies
|
|
|
|
STUBDEPPATH = --dep-path stubs
|
2020-07-22 15:21:42 +02:00
|
|
|
WRAPDEPPATH = --dep-path wraps
|
|
|
|
VPATH = proxies:stubs:wraps
|
2011-03-31 06:59:29 +02:00
|
|
|
|
|
|
|
BIN1 = libproxies$(LIBEXT)
|
|
|
|
BIN2 = libstubs$(LIBEXT)
|
2020-07-22 15:21:42 +02:00
|
|
|
BIN3 = libwraps$(LIBEXT)
|
|
|
|
SYSCALLWRAPS = syscall_wraps.ldcmd
|
2011-03-31 06:59:29 +02:00
|
|
|
|
2020-07-22 15:21:42 +02:00
|
|
|
all: $(BIN1) $(BIN2) $(BIN3) $(SYSCALLWRAPS)
|
2011-04-03 18:43:35 +02:00
|
|
|
.PHONY: context depend clean distclean
|
2011-03-31 06:59:29 +02:00
|
|
|
|
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
|
|
|
$(call ASSEMBLE, $<, $@)
|
|
|
|
|
|
|
|
$(COBJS): %$(OBJEXT): %.c
|
|
|
|
$(call COMPILE, $<, $@)
|
|
|
|
|
|
|
|
$(BIN1): $(PROXY_OBJS)
|
2012-11-15 18:43:29 +01:00
|
|
|
$(call ARCHIVE, $@, $(PROXY_OBJS))
|
2011-03-31 06:59:29 +02:00
|
|
|
|
|
|
|
$(BIN2): $(STUB_OBJS)
|
2013-03-07 15:27:47 +01:00
|
|
|
$(call ARCHIVE, $@, $(STUB_OBJS))
|
2011-03-31 06:59:29 +02:00
|
|
|
|
2020-07-22 15:21:42 +02:00
|
|
|
$(BIN3): $(WRAP_OBJS)
|
|
|
|
$(call ARCHIVE, $@, $(WRAP_OBJS))
|
|
|
|
|
|
|
|
$(SYSCALLWRAPS): .context
|
|
|
|
|
2024-09-15 06:41:42 +02:00
|
|
|
makedepfile: $(CSRCS:.c=.ddc) $(ASRCS:.S=.dds)
|
|
|
|
$(call CATFILE, Make.dep, $^)
|
|
|
|
$(call DELFILE, $^)
|
|
|
|
|
2020-07-22 09:54:29 +02:00
|
|
|
.depend: Makefile $(SRCS) $(TOPDIR)$(DELIM).config
|
2024-09-15 06:41:42 +02:00
|
|
|
$(Q) $(MAKE) makedepfile DEPPATH="$(PROXYDEPPATH) $(STUBDEPPATH) $(WRAPDEPPATH)"
|
2020-03-23 03:44:03 +01:00
|
|
|
$(Q) touch $@
|
2011-03-31 06:59:29 +02:00
|
|
|
|
2020-03-23 03:44:03 +01:00
|
|
|
depend: .depend
|
2011-03-31 06:59:29 +02:00
|
|
|
|
2011-04-03 18:43:35 +02:00
|
|
|
.context: syscall.csv
|
2018-07-23 14:44:31 +02:00
|
|
|
$(Q) $(MAKE) -C $(TOPDIR)$(DELIM)tools -f Makefile.host mksyscall
|
2020-07-22 15:21:42 +02:00
|
|
|
ifeq ($(CONFIG_LIB_SYSCALL),y)
|
2012-11-11 19:36:28 +01:00
|
|
|
$(Q) (cd proxies; $(MKSYSCALL) -p $(CSVFILE);)
|
|
|
|
$(Q) (cd stubs; $(MKSYSCALL) -s $(CSVFILE);)
|
2020-07-22 15:21:42 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SCHED_INSTRUMENTATION_SYSCALL),y)
|
|
|
|
$(Q) (cd wraps; $(MKSYSCALL) -w $(CSVFILE);)
|
|
|
|
$(Q) $(CPP) $(CPPFLAGS) $(SYSCALLWRAPS:.ldcmd=.h) | \
|
|
|
|
sed -e '1,/WRAPOPTSTARTS/d' -e '/^#/d' > $(SYSCALLWRAPS)
|
|
|
|
endif
|
2012-11-11 19:36:28 +01:00
|
|
|
$(Q) touch $@
|
2011-03-31 06:59:29 +02:00
|
|
|
|
2018-07-23 14:44:31 +02:00
|
|
|
context: .context
|
2011-03-31 06:59:29 +02:00
|
|
|
|
|
|
|
clean:
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, $(BIN1))
|
|
|
|
$(call DELFILE, $(BIN2))
|
2020-07-22 15:21:42 +02:00
|
|
|
$(call DELFILE, $(BIN3))
|
2011-04-02 17:25:22 +02:00
|
|
|
ifneq ($(OBJEXT),)
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, proxies$(DELIM)*$(OBJEXT))
|
|
|
|
$(call DELFILE, stubs$(DELIM)*$(OBJEXT))
|
2020-07-22 15:21:42 +02:00
|
|
|
$(call DELFILE, wraps$(DELIM)*$(OBJEXT))
|
2011-04-02 03:23:08 +02:00
|
|
|
endif
|
2011-03-31 06:59:29 +02:00
|
|
|
$(call CLEAN)
|
|
|
|
|
|
|
|
distclean: clean
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, .context)
|
|
|
|
$(call DELFILE, Make.dep)
|
2020-03-23 03:44:03 +01:00
|
|
|
$(call DELFILE, .depend)
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, proxies$(DELIM)*.c)
|
|
|
|
$(call DELFILE, stubs$(DELIM)*.c)
|
2020-07-22 15:21:42 +02:00
|
|
|
$(call DELFILE, wraps$(DELIM)*.c)
|
|
|
|
$(call DELFILE, $(SYSCALLWRAPS))
|
2011-03-31 06:59:29 +02:00
|
|
|
|
|
|
|
-include Make.dep
|