tools: add Host/Uninstall where possible
[openwrt/staging/dedeckeh.git] / tools / isl / Makefile
1 #
2 # Copyright (C) 2009-2013 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
9 PKG_NAME:=isl
10 PKG_VERSION:=0.25
11
12 PKG_SOURCE_URL:=https://libisl.sourceforge.io/
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
14 PKG_HASH:=be7b210647ccadf90a2f0b000fca11a4d40546374a850db67adb32fad4b230d9
15
16 HOST_BUILD_PARALLEL:=1
17
18 include $(INCLUDE_DIR)/host-build.mk
19
20 unexport CFLAGS
21
22 HOST_CONFIGURE_ARGS += \
23 --enable-static \
24 --disable-shared \
25 --with-gmp-prefix=$(STAGING_DIR_HOST)
26
27 define Host/Uninstall
28 -$(call Host/Compile/Default,uninstall)
29 endef
30
31 $(eval $(call HostBuild))