Root/tools/quilt/Makefile

1#
2# Copyright (C) 2006 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:=quilt
10PKG_VERSION:=0.47
11
12PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
13PKG_SOURCE_URL:=http://download.savannah.gnu.org/releases/$(PKG_NAME)
14PKG_MD5SUM:=d33d2442bd34387260b1c1db3e623af0
15
16include $(INCLUDE_DIR)/host-build.mk
17
18define Host/Configure
19    cd $(HOST_BUILD_DIR) && autoconf
20    $(call Host/Configure/Default)
21    [ -f $(HOST_BUILD_DIR)/Makefile ]
22endef
23
24define Host/Compile
25    $(MAKE) -C $(HOST_BUILD_DIR) SHELL="$(BASH)" all lib/backup-files
26endef
27
28define Host/Install
29    $(MAKE) -C $(HOST_BUILD_DIR) SHELL="$(BASH)" install
30endef
31
32define Host/Clean
33    rm -f $(STAGING_DIR_HOST)/bin/quilt
34endef
35
36$(eval $(call HostBuild))
37

Archive Download this file



interactive