mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-18 23:41:30 +02:00
117 lines
3.7 KiB
Makefile
117 lines
3.7 KiB
Makefile
#***********************************************************************
|
|
#
|
|
# Copyright (c) 2006-2007 Broadcom Corporation
|
|
# All Rights Reserved
|
|
#
|
|
# <:label-BRCM:2006:DUAL/GPL:standard
|
|
#
|
|
# Unless you and Broadcom execute a separate written software license
|
|
# agreement governing use of this software, this software is licensed
|
|
# to you under the terms of the GNU General Public License version 2
|
|
# (the "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php,
|
|
# with the following added to such license:
|
|
#
|
|
# As a special exception, the copyright holders of this software give
|
|
# you permission to link this software with independent modules, and
|
|
# to copy and distribute the resulting executable under terms of your
|
|
# choice, provided that you also meet, for each linked independent
|
|
# module, the terms and conditions of the license of that module.
|
|
# An independent module is a module which is not derived from this
|
|
# software. The special exception does not apply to any modifications
|
|
# of the software.
|
|
#
|
|
# Not withstanding the above, under no circumstances may you combine
|
|
# this software in any way with any other Broadcom software provided
|
|
# under a license other than the GPL, without Broadcom's express prior
|
|
# written consent.
|
|
#
|
|
# :>
|
|
#
|
|
#***********************************************************************
|
|
|
|
LIB = libstlport.so.5.2
|
|
LIB-SRC = STLport-5.2.1
|
|
|
|
all dynamic install: conditional_build
|
|
|
|
#
|
|
# Set our CommEngine directory (by splitting the pwd into two words
|
|
# at /userspace and taking the first word only).
|
|
# Then include the common defines under CommEngine.
|
|
# You do not need to modify this part.
|
|
#
|
|
CURR_DIR := $(shell pwd)
|
|
BUILD_DIR:=$(HND_SRC)
|
|
|
|
include $(BUILD_DIR)/make.common
|
|
|
|
ifeq ($(strip $(DESKTOP_LINUX)),y)
|
|
CFLAGS := $(BCM_LD_FLAGS)
|
|
CXXFLAGS := $(BCM_LD_FLAGS)
|
|
LDFLAGS := $(BCM_LD_FLAGS)
|
|
export CFLAGS CXXFLAGS LDFLAGS
|
|
endif
|
|
|
|
#undefined the CC and CXX from make.common as the stlport makefile is not compatible with that.
|
|
unexport CC
|
|
unexport CXX
|
|
|
|
# STLPORT makefiles get confused if the toolchain is not in PATH, but we don't want the toolchain's
|
|
# tar implementation in the PATH. So, we set TPATH and add it to the PATH only where needed
|
|
|
|
TPATH := $(TOOLCHAIN)/bin:$(PATH)
|
|
|
|
# Compute the proper target name
|
|
ifeq ($(strip $(TOOLCHAIN_PREFIX)),)
|
|
TARGET_LIB := lib
|
|
else
|
|
TARGET_LIB := $(TOOLCHAIN_PREFIX)-lib
|
|
endif
|
|
|
|
clean: generic_clean
|
|
@PATH=$(TPATH) ; if [ -e $(LIB-SRC)/Makefile ]; then \
|
|
cd $(LIB-SRC); $(MAKE) clean; \
|
|
fi
|
|
rm -rf $(LIB-SRC)
|
|
rm -rf lib
|
|
rm -rf include
|
|
rm -f $(INSTALL_DIR)/lib/public/$(LIB)
|
|
|
|
# The next line is a hint to our release scripts
|
|
# GLOBAL_RELEASE_SCRIPT_CALL_DISTCLEAN
|
|
distclean:
|
|
rm -f $(LIB)
|
|
rm -rf $(LIB-SRC)
|
|
rm -rf lib
|
|
rm -rf include
|
|
rm -f $(INSTALL_DIR)/lib/public/$(LIB)
|
|
|
|
ifneq ($(strip $(BUILD_LIB_STLPORT)),)
|
|
conditional_build: generic_public_lib_install
|
|
else
|
|
conditional_build: sanity_check
|
|
@echo "skipping $(LIB) (not configured)"
|
|
endif
|
|
|
|
check_untar_patch_configure: sanity_check
|
|
@if [ ! -e $(LIB-SRC)/README ]; then \
|
|
echo "Untarring original $(LIB-SRC) source"; \
|
|
(tar xkf $(LIB-SRC).tar.bz2 2> /dev/null || true); \
|
|
echo "Applying patches to $(LIB-SRC)"; \
|
|
patch -p1 -b -d$(LIB-SRC) < bcm_patches/$(LIB-SRC).patch; \
|
|
(PATH=$(TPATH) ; cd $(LIB-SRC); ./configure --target=$(TOOLCHAIN_PREFIX) --prefix=.); \
|
|
fi
|
|
|
|
check_lib_path:
|
|
@if [ ! -e ./lib ]; then \
|
|
ln -fs ./$(LIB-SRC)/build/lib/$(TARGET_LIB) ./lib; \
|
|
fi
|
|
|
|
check_include_path:
|
|
@if [ ! -e ./include ]; then \
|
|
ln -fs ./$(LIB-SRC)/build/lib/include/stlport ./include; \
|
|
fi
|
|
|
|
$(LIB): check_untar_patch_configure check_lib_path check_include_path
|
|
PATH=$(TPATH) ; cd $(LIB-SRC); $(MAKE) install-release-shared;
|
|
cp ./$(LIB-SRC)/build/lib/$(TARGET_LIB)/$(LIB) .
|