aboutsummaryrefslogtreecommitdiffstats
path: root/tools/upslug2/Makefile
blob: e80cef0eb4bd441e8de640de05395a7ff4abd3f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#
# 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
HOST_LDFLAGS += $(HOST_STATIC_LINKING)

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))