buildrootschalter/package/grep/grep.mk

68 lines
1.8 KiB
Makefile
Raw Normal View History

2003-02-15 13:36:32 +01:00
#############################################################
#
# grep
#
#############################################################
2009-01-09 14:34:53 +01:00
GNUGREP_VERSION:=2.5.3
GNUGREP_SOURCE:=grep-$(GNUGREP_VERSION).tar.gz
GNUGREP_SITE:=$(BR2_GNU_MIRROR)/grep
GNUGREP_DIR:=$(BUILD_DIR)/grep-$(GNUGREP_VERSION)
GNUGREP_CAT:=$(ZCAT)
2003-02-15 13:36:32 +01:00
GNUGREP_BINARY:=src/grep
GNUGREP_TARGET_BINARY:=bin/grep
$(DL_DIR)/$(GNUGREP_SOURCE):
$(WGET) -P $(DL_DIR) $(GNUGREP_SITE)/$(GNUGREP_SOURCE)
grep-source: $(DL_DIR)/$(GNUGREP_SOURCE)
$(GNUGREP_DIR)/.unpacked: $(DL_DIR)/$(GNUGREP_SOURCE)
2004-01-29 00:11:00 +01:00
rm -rf $(GNUGREP_DIR).xxx
$(GNUGREP_CAT) $(DL_DIR)/$(GNUGREP_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
$(CONFIG_UPDATE) $(GNUGREP_DIR)
2008-03-06 19:11:51 +01:00
touch $@
2003-02-15 13:36:32 +01:00
$(GNUGREP_DIR)/.configured: $(GNUGREP_DIR)/.unpacked
(cd $(GNUGREP_DIR); rm -rf config.cache; \
$(TARGET_CONFIGURE_OPTS) \
$(TARGET_CONFIGURE_ARGS) \
2003-02-15 13:36:32 +01:00
./configure \
--target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \
2008-07-23 12:35:59 +02:00
--prefix=/ \
$(DISABLE_NLS) \
$(DISABLE_LARGEFILE) \
2003-02-17 02:21:33 +01:00
--disable-perl-regexp \
--without-included-regex \
)
2008-03-06 19:11:51 +01:00
touch $@
2003-02-15 13:36:32 +01:00
$(GNUGREP_DIR)/$(GNUGREP_BINARY): $(GNUGREP_DIR)/.configured
$(MAKE) -C $(GNUGREP_DIR)
2008-07-23 12:35:56 +02:00
$(TARGET_DIR)/$(GNUGREP_TARGET_BINARY): $(GNUGREP_DIR)/$(GNUGREP_BINARY)
for i in egrep fgrep grep; do \
$(INSTALL) $(GNUGREP_DIR)/src/$$i $(@D); \
done
$(STRIPCMD) $(STRIP_STRIP_ALL) $@
2003-02-15 13:36:32 +01:00
grep: uclibc $(if $(BR2_ENABLE_LOCALE),gettext libintl) \
$(TARGET_DIR)/$(GNUGREP_TARGET_BINARY)
echo deps: $^
2003-02-15 13:36:32 +01:00
grep-clean:
2008-07-23 12:35:56 +02:00
rm -f $(addprefix $(TARGET_DIR)/bin/,egrep fgrep grep)
2003-02-15 13:36:32 +01:00
-$(MAKE) -C $(GNUGREP_DIR) clean
grep-dirclean:
rm -rf $(GNUGREP_DIR)
#############################################################
#
# Toplevel Makefile options
#
#############################################################
ifeq ($(BR2_PACKAGE_GREP),y)
TARGETS+=grep
endif