summaryrefslogtreecommitdiffstats
path: root/package/wificonf/Makefile
blob: 5fbaf052312ad790a064659f89fee607744bada9 (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
# $Id$

include $(TOPDIR)/rules.mk

PKG_NAME:=wificonf
PKG_RELEASE:=5

PKG_BUILD_DIR:=$(BUILD_DIR)/wificonf

include $(TOPDIR)/package/rules.mk

define Package/wificonf
SECTION:=base
CATEGORY:=Network
DEFAULT:=y
TITLE:=replacement utility for wlconf
DESCRIPTION:=Replacement utility for wlconf
endef

define Build/Compile
	$(TARGET_CC) $(TARGET_CFLAGS) -Iinclude/ -I$(STAGING_DIR)/usr/include -o $(PKG_BUILD_DIR)/wifi wificonf.c -L$(STAGING_DIR)/usr/lib -lnvram -lshared $(STAGING_DIR)/usr/lib/libiw.so
endef

define Package/wificonf/install
	install -d -m0755 $(1)/sbin
	install -m0755 $(PKG_BUILD_DIR)/wifi $(1)/sbin/
endef