| 12345678910111213141516171819202122232425262728293031323334353637 | # 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.mkPKG_NAME:=		stracePKG_VERSION:=		4.8PKG_RELEASE:=		4PKG_MD5SUM:=		c575ef43829586801f514fd91bfe7575PKG_DESCR:=		System call trace programPKG_SECTION:=		debugPKG_DEPENDS:=		libgccPKG_SITES:=		${MASTER_SITE_SOURCEFORGE:=strace/}DISTFILES:=		${PKG_NAME}-${PKG_VERSION}.tar.xzinclude ${TOPDIR}/mk/package.mk$(eval $(call PKG_template,STRACE,strace,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))ifeq ($(ADK_STATIC),y)TARGET_CFLAGS+=		-staticendififeq ($(ADK_TARGET_LIB_MUSL),y)TARGET_CPPFLAGS+=	-DMSG_EXCEPT=020000 -D_LARGEFILE64_SOURCE=1ifeq ($(ADK_LINUX_PPC),y)TARGET_CPPFLAGS+=	-Dsigcontext_struct=sigcontext -include ppc-regs.hendifendifINSTALL_STYLE:=		manualdo-install:	${INSTALL_DIR} ${IDIR_STRACE}/usr/sbin	${INSTALL_BIN} ${WRKBUILD}/strace ${IDIR_STRACE}/usr/sbininclude ${TOPDIR}/mk/pkg-bottom.mk
 |