115 lines
3.4 KiB
Makefile
115 lines
3.4 KiB
Makefile
############################################################################
|
|
# libs/libxx/Makefile
|
|
#
|
|
# Copyright (C) 2009, 2012, 2016-2017 Gregory Nutt. All rights reserved.
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
|
#
|
|
# 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)/Make.defs
|
|
|
|
CXXSRCS = libxx_cxa_atexit.cxx
|
|
|
|
ifeq ($(CONFIG_CXX_LIBSUPCXX),y)
|
|
CXXSRCS += libxx_impure.cxx
|
|
else
|
|
CXXSRCS += libxx_eabi_atexit.cxx
|
|
endif
|
|
|
|
# Include the uClibc++ Make.defs file if selected. If it is included,
|
|
# the uClibc++/Make.defs file will add its files to the source file list,
|
|
# add its DEPPATH info, and will add the appropriate paths to the VPATH
|
|
# variable
|
|
#
|
|
# Note that an error will occur if you select CONFIG_LIBXX_UCLIBCXX
|
|
# without installing the uClibc++ package. This is intentional to let
|
|
# you know about the configuration problem. Refer to the README.txt file
|
|
# in the NuttX uClibc++ GIT repository for more information
|
|
|
|
ifeq ($(CONFIG_UCLIBCXX),y)
|
|
include uClibc++.defs
|
|
else ifeq ($(CONFIG_LIBCXX),y)
|
|
include libcxx.defs
|
|
else
|
|
include cxx.defs
|
|
endif
|
|
|
|
# Object Files
|
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
|
CXXOBJS = $(CXXSRCS:.cxx=$(OBJEXT))
|
|
CPPOBJS = $(CPPSRCS:.cpp=$(OBJEXT))
|
|
|
|
SRCS = $(ASRCS) $(CSRCS) $(CXXSRCS) $(CPPSRCS)
|
|
OBJS = $(AOBJS) $(COBJS) $(CXXOBJS) $(CPPOBJS)
|
|
|
|
BIN = libxx$(LIBEXT)
|
|
|
|
all: $(BIN)
|
|
.PHONY: depend clean distclean dirlinks
|
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
|
$(call ASSEMBLE, $<, $@)
|
|
|
|
$(COBJS): %$(OBJEXT): %.c
|
|
$(call COMPILE, $<, $@)
|
|
|
|
$(CXXOBJS): %$(OBJEXT): %.cxx
|
|
$(call COMPILEXX, $<, $@)
|
|
|
|
$(CPPOBJS): %$(OBJEXT): %.cpp
|
|
$(call COMPILEXX, $<, $@)
|
|
|
|
$(BIN): $(OBJS)
|
|
$(call ARCHIVE, $@, $(OBJS))
|
|
|
|
dirlinks::
|
|
|
|
makedepfile: $(CXXSRCS:.cxx=.ddx) $(CPPSRCS:.cpp=.ddp)
|
|
$(call CATFILE, Make.dep, $^)
|
|
$(call DELFILE, $^)
|
|
|
|
.depend: Makefile $(SRCS) $(TOPDIR)$(DELIM).config
|
|
$(Q) $(MAKE) makedepfile
|
|
$(Q) touch $@
|
|
|
|
depend: .depend
|
|
|
|
clean:
|
|
$(call DELFILE, $(BIN))
|
|
$(call CLEAN)
|
|
|
|
distclean:: clean
|
|
$(call DELFILE, Make.dep)
|
|
$(call DELFILE, .depend)
|
|
|
|
-include Make.dep
|