1 include $(TOPDIR
)/rules.mk
4 PKG_VERSION
:=cvs
.2006.03.02
6 PKG_MD5SUM
:=7aed4ba94926010d76febb797b288e98
10 PKG_SOURCE_URL
:=http
://pdos.csail.mit.edu
/~jbicket
/click_snapshots
/
11 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
14 PKG_BUILD_DIR
:=$(BUILD_DIR
)/$(PKG_NAME
)-$(PKG_VERSION
)
15 PKG_INSTALL_DIR
:=$(PKG_BUILD_DIR
)/ipkg-install
17 include $(TOPDIR
)/package
/rules.mk
19 $(eval
$(call PKG_template
,CLICK
,$(PKG_NAME
),$(PKG_VERSION
)-$(PKG_RELEASE
),$(ARCH
)))
20 $(eval
$(call PKG_template
,ROOFNET
,roofnet
,$(ROOFNET_VERSION
),$(ARCH
)))
22 $(PKG_BUILD_DIR
)/.configured
:
23 (cd
$(PKG_BUILD_DIR
); \
25 cp
include/click
/config.h
include/click
/config-host.h
; \
26 rm -rf config.
{cache
,status
} ; \
27 $(TARGET_CONFIGURE_OPTS
) \
28 CXXFLAGS
="-static -O2 -MD" \
29 CFLAGS
="-static -MD" \
30 CPPFLAGS
="-I$(STAGING_DIR)/usr/include" \
31 LDFLAGS
="-L$(STAGING_DIR)/usr/lib" \
34 --target
=$(GNU_TARGET_NAME
) \
35 --host
=$(GNU_TARGET_NAME
) \
36 --build
=$(GNU_HOST_NAME
) \
38 --disable-linuxmodule \
39 --enable-tools
=mixed \
40 --disable-dynamic-linking \
45 # don't build the full click (it's huge), but only include
46 # the elements needed for roofnet
47 $(PKG_BUILD_DIR
)/.built
: $(PKG_BUILD_DIR
)/.configured
48 rm -rf
$(PKG_INSTALL_DIR
)
49 mkdir
-p
$(PKG_INSTALL_DIR
)
50 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
51 BUILD_CXX
="g++ -include $(PKG_BUILD_DIR)/include/click/config-host.h" \
53 (cd
$(PKG_BUILD_DIR
)/userlevel
; \
54 ..
/tools
/click-mkmindriver
/click-mkmindriver
-p roofnet
-C .. \
55 -f
$(PKG_BUILD_DIR
)/conf
/wifi
/sample.click \
56 -A
--all -E IPNameInfo
-E FromHost
-E ToHost
-E Discard
; \
57 $(MAKE
) -f Makefile.roofnet
; \
62 install -d
-m0755
$(IDIR_CLICK
)/usr
/bin
63 $(CP
) $(PKG_BUILD_DIR
)/userlevel
/roofnetclick
$(IDIR_CLICK
)/usr
/bin
/click
64 $(CP
) $(PKG_BUILD_DIR
)/tools
/click-align
/click-align
$(IDIR_CLICK
)/usr
/bin
/click-align
65 $(RSTRIP
) $(IDIR_CLICK
)
66 $(IPKG_BUILD
) $(IDIR_CLICK
) $(PACKAGE_DIR
)
70 install -d
-m0755
$(IDIR_ROOFNET
)/usr
/bin
71 $(CP
) $(PKG_BUILD_DIR
)/conf
/wifi
/gen_config_roofnet.sh
$(IDIR_ROOFNET
)/usr
/bin
72 $(CP
) $(PKG_BUILD_DIR
)/conf
/wifi
/srcr.click
$(IDIR_ROOFNET
)/usr
/bin
73 $(CP
) $(PKG_BUILD_DIR
)/conf
/wifi
/read_handler
$(IDIR_ROOFNET
)/usr
/bin
74 $(CP
) $(PKG_BUILD_DIR
)/conf
/wifi
/write_handler
$(IDIR_ROOFNET
)/usr
/bin
75 mkdir
-p
$(IDIR_ROOFNET
)/etc
/init.d
76 install -m
755 .
/files
/S50roofnet
$(IDIR_ROOFNET
)/etc
/init.d
/
77 $(IPKG_BUILD
) $(IDIR_ROOFNET
) $(PACKAGE_DIR
)