diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-09-04 10:05:00 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-09-04 10:05:07 +0200 |
commit | 42a794b170f85cd2a016ed78a62e2367e9bd1de0 (patch) | |
tree | 965c20295ab8cb1032d4ad74546bb1cd77750c72 /package/libgo/Makefile | |
parent | 17503c1de144fd5afcbfa23796c3d92a5f1cfde6 (diff) |
gccgo: fix bulding and package libgo
Diffstat (limited to 'package/libgo/Makefile')
-rw-r--r-- | package/libgo/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/package/libgo/Makefile b/package/libgo/Makefile new file mode 100644 index 000000000..3acab0f31 --- /dev/null +++ b/package/libgo/Makefile @@ -0,0 +1,33 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include ${ADK_TOPDIR}/rules.mk +include ${ADK_TOPDIR}/toolchain/gcc/Makefile.inc + +PKG_NAME:= libgo +PKG_DESCR:= gcc go library +PKG_SECTION:= base/libs +PKG_DEPENDS:= libpthread +PKG_OPTS:= noremove + +PKG_DFLT_LIBGCC:= y if !ADK_APPLIANCE_TOOLCHAIN + +NO_DISTFILES:= 1 + +include ${ADK_TOPDIR}/mk/package.mk + +$(eval $(call PKG_template,LIBGO,libgo,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS})) + +CONFIG_STYLE:= manual +BUILD_STYLE:= manual +INSTALL_STYLE:= manual + +libgo-install: + $(INSTALL_DIR) ${IDIR_LIBGO}/$(ADK_TARGET_LIBC_PATH) +ifeq ($(ADK_TARGET_USE_STATIC_LIBS),) +ifeq ($(ADK_TARGET_BINFMT_FLAT),) + ${CP} ${STAGING_TARGET_DIR}/usr/lib/libgo*.so* ${IDIR_LIBGO}/$(ADK_TARGET_LIBC_PATH) +endif +endif + +include ${ADK_TOPDIR}/mk/pkg-bottom.mk |