netifd: enable parallel build
[openwrt/openwrt.git] / package / network / config / netifd / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=netifd
4 PKG_VERSION:=2012-09-29
5 PKG_RELEASE=$(PKG_SOURCE_VERSION)
6
7 PKG_SOURCE_PROTO:=git
8 PKG_SOURCE_URL:=git://nbd.name/luci2/netifd.git
9 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
10 PKG_SOURCE_VERSION:=6653b861748719ab58e21a81e01d59d4d8afe10c
11 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
12 PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
13 # PKG_MIRROR_MD5SUM:=
14 # CMAKE_INSTALL:=1
15
16 PKG_BUILD_PARALLEL:=1
17
18 include $(INCLUDE_DIR)/package.mk
19 include $(INCLUDE_DIR)/cmake.mk
20
21 define Package/netifd
22 SECTION:=base
23 CATEGORY:=Base system
24 DEPENDS:=+libuci +libnl-tiny +libubus +ubus +ubusd +jshn
25 TITLE:=OpenWrt Network Interface Configuration Daemon
26 endef
27
28 TARGET_CFLAGS += \
29 -I$(STAGING_DIR)/usr/include/libnl-tiny \
30 -I$(STAGING_DIR)/usr/include
31
32 CMAKE_OPTIONS += \
33 -DLIBNL_LIBS=-lnl-tiny \
34 -DDEBUG=1
35
36 define Package/netifd/install
37 $(INSTALL_DIR) $(1)/sbin
38 $(INSTALL_BIN) $(PKG_BUILD_DIR)/netifd $(1)/sbin/
39 $(CP) ./files/* $(1)/
40 $(CP) $(PKG_BUILD_DIR)/dummy/netifd-proto.sh $(1)/lib/netifd/
41 endef
42
43 $(eval $(call BuildPackage,netifd))