19d160c337e3747554c1827e50d2e80414cacc34
[openwrt.git] / tools / upslug2 / Makefile
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
9 PKG_NAME:=upslug2
10 PKG_VERSION:=20071227
11
12 PKG_SOURCE_URL:=http://svn.nslu2-linux.org/svnroot/upslug2/trunk
13 PKG_SOURCE_PROTO:=svn
14 PKG_SOURCE_SUBDIR:=upslug2-$(PKG_VERSION)
15 PKG_SOURCE_VERSION:=41
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17
18 include $(INCLUDE_DIR)/host-build.mk
19
20 unexport CFLAGS
21 HOST_LDFLAGS += -static
22
23 define Host/Configure
24         (cd $(HOST_BUILD_DIR); \
25                 aclocal && autoconf && \
26                 autoheader && \
27                 automake --add-missing; \
28         )
29         $(Host/Configure/Default)
30 endef
31
32 ifneq ($(HOST_OS),Linux)
33         HOST_CONFIGURE_ARGS += --with-libpcap
34 endif
35
36 $(eval $(call HostBuild))