eb7bd9ef61
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
616 B
Makefile
22 lines
616 B
Makefile
################################################################################
|
|
#
|
|
# netperf
|
|
#
|
|
################################################################################
|
|
|
|
NETPERF_VERSION = 2.6.0
|
|
NETPERF_SITE = ftp://ftp.netperf.org/netperf
|
|
NETPERF_CONF_ENV = ac_cv_func_setpgrp_void=set
|
|
NETPERF_CONF_OPT = --enable-demo=yes
|
|
NETPERF_LICENSE = netperf license
|
|
NETPERF_LICENSE_FILES = COPYING
|
|
|
|
define NETPERF_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 $(@D)/src/netperf \
|
|
$(TARGET_DIR)/usr/bin/netperf
|
|
$(INSTALL) -m 0755 $(@D)/src/netserver \
|
|
$(TARGET_DIR)/usr/bin/netserver
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|