standardize Makefile
SVN-Revision: 4812
This commit is contained in:
parent
c48beb25ff
commit
2ee06ac770
1 changed files with 10 additions and 7 deletions
|
@ -21,20 +21,23 @@ PKG_CAT:=bzcat
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
define Package/ipset
|
define Package/ipset
|
||||||
SECTION:=base
|
SECTION:=net
|
||||||
CATEGORY:=Network
|
CATEGORY:=Network
|
||||||
TITLE:=Netfilter ip sets administration utility
|
TITLE:=Netfilter ip sets administration utility
|
||||||
DESCRIPTION:=Netfilter ip sets administration utility
|
URL:=http://ipset.netfilter.org/
|
||||||
URL:=http://ipset.netfilter.org/
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
$(call Build/Compile/Default,KERNEL_DIR=$(LINUX_DIR))
|
$(call Build/Compile/Default, \
|
||||||
|
KERNEL_DIR="$(LINUX_DIR)" \
|
||||||
|
)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/ipset/install
|
define Package/ipset/install
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
DESTDIR=$(1) PREFIX=/usr install
|
DESTDIR="$(1)" \
|
||||||
|
PREFIX="/usr" \
|
||||||
|
install
|
||||||
rm -rf $(1)/usr/man
|
rm -rf $(1)/usr/man
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue