86 lines
2.5 KiB
Makefile
86 lines
2.5 KiB
Makefile
############################################################################
|
|
# libs/libbuiltin/Makefile
|
|
#
|
|
# 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
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# 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.
|
|
#
|
|
###########################################################################
|
|
|
|
include $(TOPDIR)/Make.defs
|
|
|
|
ifeq ($(CONFIG_BUILTIN_COMPILER_RT),y)
|
|
include compiler-rt/Make.defs
|
|
endif
|
|
|
|
BIN ?= libbuiltin$(LIBEXT)
|
|
BINDIR ?= bin
|
|
|
|
KBIN = libkbuiltin$(LIBEXT)
|
|
KBINDIR = kbin
|
|
|
|
AOBJS = $(addprefix $(BINDIR)$(DELIM), $(ASRCS:.S=$(OBJEXT)))
|
|
COBJS = $(addprefix $(BINDIR)$(DELIM), $(CSRCS:.c=$(OBJEXT)))
|
|
CXXOBJS = $(addprefix $(BINDIR)$(DELIM), $(CXXSRCS:.cxx=$(OBJEXT)))
|
|
CPPOBJS = $(addprefix $(BINDIR)$(DELIM), $(CPPSRCS:.cpp=$(OBJEXT)))
|
|
|
|
SRCS = $(ASRCS) $(CSRCS) $(CXXSRCS) $(CPPSRCS)
|
|
OBJS = $(AOBJS) $(COBJS) $(CXXOBJS) $(CPPOBJS)
|
|
|
|
BUILTIN_CLEANDIR = $(foreach dir,$(LIBBUILTIN),$(dir)/$(dir))
|
|
|
|
all: $(OBJS)
|
|
$(call ARCHIVE, $(BIN), $(OBJS))
|
|
|
|
.PHONY: depend clean distclean context $(LIBBUILTIN)
|
|
|
|
$(AOBJS): $(BINDIR)$(DELIM)%$(OBJEXT): %.S
|
|
$(call ASSEMBLE, $<, $@)
|
|
|
|
$(COBJS): $(BINDIR)$(DELIM)%$(OBJEXT): %.c
|
|
$(call COMPILE, $<, $@)
|
|
|
|
$(CXXOBJS): $(BINDIR)$(DELIM)%$(OBJEXT): %.cxx
|
|
$(call COMPILEXX, $<, $@)
|
|
|
|
$(CPPOBJS): $(BINDIR)$(DELIM)%$(OBJEXT): %.cpp
|
|
$(call COMPILEXX, $<, $@)
|
|
|
|
context::
|
|
|
|
.depend: $(LIBBUILTIN)
|
|
$(Q) touch $@
|
|
|
|
depend: .depend
|
|
|
|
$(BIN): depend
|
|
$(Q) $(MAKE) all EXTRAFLAGS="$(EXTRAFLAGS)"
|
|
|
|
# C library for the kernel phase of the two-pass kernel build
|
|
|
|
ifneq ($(BIN),$(KBIN))
|
|
$(KBIN): $(OBJS)
|
|
$(Q) $(MAKE) $(KBIN) BIN=$(KBIN) BINDIR=$(KBINDIR) EXTRAFLAGS="$(EXTRAFLAGS)"
|
|
endif
|
|
|
|
clean:
|
|
$(call DELFILE, $(BIN))
|
|
$(Q) $(MAKE) -C bin clean
|
|
$(Q) $(MAKE) -C kbin clean
|
|
|
|
distclean: clean
|
|
$(Q) $(MAKE) -C bin distclean
|
|
$(Q) $(MAKE) -C kbin distclean
|
|
$(call DELFILE, .depend)
|
|
$(call DELDIR, $(BUILTIN_CLEANDIR))
|