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>
28 lines
725 B
Makefile
28 lines
725 B
Makefile
#############################################################
|
|
#
|
|
# memstat
|
|
#
|
|
#############################################################
|
|
|
|
MEMSTAT_VERSION = 0.8
|
|
MEMSTAT_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/m/memstat
|
|
MEMSTAT_SOURCE = memstat_$(MEMSTAT_VERSION).tar.gz
|
|
|
|
define MEMSTAT_BUILD_CMDS
|
|
$(MAKE) CC="$(TARGET_CC)" LD="$(TARGET_LD)" CFLAGS="$(TARGET_CFLAGS)" \
|
|
-C $(@D) memstat
|
|
endef
|
|
|
|
define MEMSTAT_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D $(@D)/memstat.conf -m 0644 \
|
|
$(TARGET_DIR)/etc/memstat.conf
|
|
$(INSTALL) -D $(@D)/memstat $(TARGET_DIR)/usr/bin/memstat
|
|
endef
|
|
|
|
define MEMSTAT_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/etc/memstat.conf
|
|
rm -f $(TARGET_DIR)/usr/bin/memstat
|
|
endef
|
|
|
|
$(eval $(generic-package))
|