422ce6536b
A C library will have been built by the toolchain makefiles, so there is no need for packages to explicitly depend on uclibc. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
48 lines
1.6 KiB
Makefile
48 lines
1.6 KiB
Makefile
#############################################################
|
|
#
|
|
# memtester
|
|
#
|
|
#############################################################
|
|
MEMTESTER_VERSION:=4.0.6
|
|
MEMTESTER_SOURCE:=memtester-$(MEMTESTER_VERSION).tar.gz
|
|
MEMTESTER_SITE:=http://pyropus.ca/software/memtester/old-versions/
|
|
MEMTESTER_DIR:=$(BUILD_DIR)/memtester-$(MEMTESTER_VERSION)
|
|
MEMTESTER_BINARY:=memtester
|
|
MEMTESTER_TARGET_BINARY:=usr/bin/memtester
|
|
|
|
$(DL_DIR)/$(MEMTESTER_SOURCE):
|
|
$(call DOWNLOAD,$(MEMTESTER_SITE),$(MEMTESTER_SOURCE))
|
|
|
|
memtester-source: $(DL_DIR)/$(MEMTESTER_SOURCE)
|
|
|
|
$(MEMTESTER_DIR)/.unpacked: $(DL_DIR)/$(MEMTESTER_SOURCE)
|
|
$(ZCAT) $(DL_DIR)/$(MEMTESTER_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
|
#toolchain/patch-kernel.sh $(MEMTESTER_DIR) package/memtester/ memtester\*.patch
|
|
$(SED) "s,cc,$(TARGET_CC)," $(MEMTESTER_DIR)/conf-*
|
|
touch $(MEMTESTER_DIR)/.unpacked
|
|
|
|
$(MEMTESTER_DIR)/$(MEMTESTER_BINARY): $(MEMTESTER_DIR)/.unpacked
|
|
$(MAKE) -C $(MEMTESTER_DIR)
|
|
$(STRIPCMD) $(MEMTESTER_DIR)/$(MEMTESTER_BINARY)
|
|
|
|
$(TARGET_DIR)/$(MEMTESTER_TARGET_BINARY): $(MEMTESTER_DIR)/$(MEMTESTER_BINARY)
|
|
$(INSTALL) -m 0755 -D $(MEMTESTER_DIR)/$(MEMTESTER_BINARY) $(TARGET_DIR)/$(MEMTESTER_TARGET_BINARY)
|
|
|
|
memtester: $(TARGET_DIR)/$(MEMTESTER_TARGET_BINARY)
|
|
|
|
memtester-clean:
|
|
rm -f $(TARGET_DIR)/$(MEMTESTER_TARGET_BINARY)
|
|
-$(MAKE) -C $(MEMTESTER_DIR) clean
|
|
|
|
memtester-dirclean:
|
|
rm -rf $(MEMTESTER_DIR)
|
|
|
|
#############################################################
|
|
#
|
|
# Toplevel Makefile options
|
|
#
|
|
#############################################################
|
|
ifeq ($(BR2_PACKAGE_MEMTESTER),y)
|
|
TARGETS+=memtester
|
|
endif
|