300f9c9c9d
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
24 lines
594 B
Makefile
24 lines
594 B
Makefile
#############################################################
|
|
#
|
|
# netperf
|
|
#
|
|
#############################################################
|
|
|
|
NETPERF_VERSION = 2.4.5
|
|
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 $(call AUTOTARGETS))
|