mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-30 02:28:54 +00:00
47690b8802
With this patch the make install target for Noux applications gets defined in the 'NOUX_INSTALL_TARGET' make variable with 'install-strip' as default. Fixes #503.
21 lines
578 B
Makefile
21 lines
578 B
Makefile
BINUTILS = binutils-2.22
|
|
BINUTILS_TBZ2 = $(BINUTILS).tar.bz2
|
|
BINUTILS_URL = ftp://ftp.fu-berlin.de/gnu/binutils/$(BINUTILS_TBZ2)
|
|
|
|
#
|
|
# Interface to top-level prepare Makefile
|
|
#
|
|
PORTS += $(BINUTILS)
|
|
|
|
prepare:: $(CONTRIB_DIR)/$(BINUTILS)
|
|
|
|
#
|
|
# Port-specific local rules
|
|
#
|
|
$(DOWNLOAD_DIR)/$(BINUTILS_TBZ2):
|
|
$(VERBOSE)wget -c -P $(DOWNLOAD_DIR) $(BINUTILS_URL) && touch $@
|
|
|
|
$(CONTRIB_DIR)/$(BINUTILS): $(DOWNLOAD_DIR)/$(BINUTILS_TBZ2)
|
|
$(VERBOSE)tar xfj $< -C $(CONTRIB_DIR) && touch $@
|
|
$(VERBOSE)patch -d $(CONTRIB_DIR)/$(BINUTILS) -N -p1 < src/noux-pkg/binutils/build.patch
|