a1c8fa41f6
Now that TARGET_CC contains several space-separated words, it must be used quoted everywhere. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
28 lines
741 B
Makefile
28 lines
741 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 $(call GENTARGETS,package,memstat))
|