| 123456789101112131415161718192021222324 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.include ${TOPDIR}/rules.mkinclude ${TOPDIR}/toolchain/glibc/Makefile.incPKG_NAME:=		libstdcxxPKG_DESCR:=		C++ support libraryPKG_SECTION:=		libsNO_DISTFILES:=		1include ${TOPDIR}/mk/package.mk$(eval $(call PKG_template,LIBSTDCXX,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))do-install:	${INSTALL_DIR} ${IDIR_LIBSTDCXX}/libifeq ($(ADK_NATIVE),y)	$(CP) /usr/lib/libstdc++.so.* ${IDIR_LIBSTDCXX}/libelse		$(CP) ${STAGING_DIR}/lib/libstdc++.so.* ${IDIR_LIBSTDCXX}/libendifinclude ${TOPDIR}/mk/pkg-bottom.mk
 |