Makefile 514 B

1234567891011121314151617181920212223242526
  1. #
  2. # Copyright (C) 2009-2012 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=gmp
  9. PKG_VERSION:=5.0.5
  10. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  11. PKG_SOURCE_URL:=@GNU/gmp/
  12. PKG_MD5SUM:=8aef50959acec2a1ad41d144ffe0f3b5
  13. include $(INCLUDE_DIR)/host-build.mk
  14. unexport CFLAGS
  15. HOST_CONFIGURE_ARGS += \
  16. --enable-static \
  17. --disable-shared \
  18. --enable-cxx \
  19. --enable-mpbsd
  20. $(eval $(call HostBuild))