add _GNU_SOURCE to CPPFLAGS required to include <bits/socket.h> on recent eglibc...
[openwrt/svn-archive/archive.git] / package / swconfig / Makefile
1 #
2 # Copyright (C) 2008-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=swconfig
11 PKG_RELEASE:=3
12
13 include $(INCLUDE_DIR)/package.mk
14 include $(INCLUDE_DIR)/kernel.mk
15
16 define Package/swconfig
17 SECTION:=base
18 CATEGORY:=Base system
19 DEPENDS:=@LINUX_2_6 +libuci +libnl-tiny
20 TITLE:=Switch configuration utility
21 endef
22
23 TARGET_CPPFLAGS := \
24 -D_GNU_SOURCE \
25 -I$(STAGING_DIR)/usr/include/libnl-tiny \
26 -I$(LINUX_DIR)/include \
27 -I$(PKG_BUILD_DIR) \
28 $(TARGET_CPPFLAGS)
29
30 define Build/Prepare
31 mkdir -p $(PKG_BUILD_DIR)
32 $(CP) ./src/* $(PKG_BUILD_DIR)/
33 endef
34
35 define Build/Compile
36 CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \
37 $(MAKE) -C $(PKG_BUILD_DIR) \
38 $(TARGET_CONFIGURE_OPTS) \
39 LIBS="$(TARGET_LDFLAGS) -lnl-tiny -lm -luci"
40 endef
41
42 define Package/swconfig/install
43 $(INSTALL_DIR) $(1)/sbin $(1)/lib/network
44 $(INSTALL_BIN) $(PKG_BUILD_DIR)/swconfig $(1)/sbin/swconfig
45 $(INSTALL_DATA) ./files/switch.sh $(1)/lib/network/
46 endef
47
48 $(eval $(call BuildPackage,swconfig))