diff options
author | James <> | 2015-11-04 11:49:21 +0000 |
---|---|---|
committer | James <> | 2015-11-04 11:49:21 +0000 |
commit | 716ca530e1c4515d8683c9d5be3d56b301758b66 (patch) | |
tree | 700eb5bcc1a462a5f21dcec15ce7c97ecfefa772 /tools/upslug2/Makefile | |
download | trunk-47381-master.tar.gz trunk-47381-master.tar.bz2 trunk-47381-master.zip |
Diffstat (limited to 'tools/upslug2/Makefile')
-rw-r--r-- | tools/upslug2/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tools/upslug2/Makefile b/tools/upslug2/Makefile new file mode 100644 index 0000000..33b1ff5 --- /dev/null +++ b/tools/upslug2/Makefile @@ -0,0 +1,35 @@ +# +# Copyright (C) 2009-2012 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +include $(TOPDIR)/rules.mk + +PKG_NAME:=upslug2 +PKG_VERSION:=20071227 + +PKG_SOURCE_URL:=http://svn.nslu2-linux.org/svnroot/upslug2/trunk +PKG_SOURCE_PROTO:=svn +PKG_SOURCE_SUBDIR:=upslug2-$(PKG_VERSION) +PKG_SOURCE_VERSION:=41 +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 + +include $(INCLUDE_DIR)/host-build.mk + +unexport CFLAGS + +define Host/Configure + (cd $(HOST_BUILD_DIR); \ + aclocal && autoconf && \ + autoheader && \ + automake --add-missing; \ + ) + $(Host/Configure/Default) +endef + +ifneq ($(HOST_OS),Linux) + HOST_CONFIGURE_ARGS += --with-libpcap +endif + +$(eval $(call HostBuild)) |