e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
595 B
Makefile
24 lines
595 B
Makefile
#############################################################
|
|
#
|
|
# netperf
|
|
#
|
|
#############################################################
|
|
|
|
NETPERF_VERSION = 2.5.0
|
|
NETPERF_SITE = ftp://ftp.netperf.org/netperf
|
|
NETPERF_CONF_ENV = ac_cv_func_setpgrp_void=set
|
|
|
|
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
|
|
|
|
define NETPERF_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/bin/netperf
|
|
rm -f $(TARGET_DIR)/usr/bin/netserver
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|