summaryrefslogtreecommitdiffstats
path: root/rules/nettle.make
diff options
context:
space:
mode:
authorBenedikt Spranger <b.spranger@pengutronix.de>2003-06-16 12:05:16 +0000
committerBenedikt Spranger <b.spranger@pengutronix.de>2003-06-16 12:05:16 +0000
commit8e2cb88aa84c261b3bb4620a99bfff5b0148fae8 (patch)
tree66d9311a8510228c123fad51a5b623dde64649d4 /rules/nettle.make
parent5faae5f149a5f117bb36eaf07801c6bb7df1efe8 (diff)
downloadptxdist-8e2cb88aa84c261b3bb4620a99bfff5b0148fae8.tar.gz
ptxdist-8e2cb88aa84c261b3bb4620a99bfff5b0148fae8.tar.xz
new feature: dep-tree visualization
fix build error: wrong compiler for u-boot-mkimage fix build error: wrong patchlevel in glibc-Makefile git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunk@31 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/nettle.make')
-rw-r--r--rules/nettle.make38
1 files changed, 7 insertions, 31 deletions
diff --git a/rules/nettle.make b/rules/nettle.make
index 5fd361109..772a7efaf 100644
--- a/rules/nettle.make
+++ b/rules/nettle.make
@@ -1,4 +1,4 @@
-# $Id: nettle.make,v 1.1 2003/04/24 08:06:33 jst Exp $
+# $Id: nettle.make,v 1.2 2003/06/16 12:05:16 bsp Exp $
#
# (c) 2002 by Pengutronix e.K., Hildesheim, Germany
# See CREDITS for details about who has contributed to this project.
@@ -33,11 +33,7 @@ $(STATEDIR)/nettle.get: $(NETTLE_SOURCE)
touch $@
$(NETTLE_SOURCE):
- @echo
- @echo ----------
- @echo target: nettle.get
- @echo ----------
- @echo
+ @$(call targetinfo, nettle.get)
wget -P $(SRCDIR) $(PASSIVEFTP) $(NETTLE_URL)
# ----------------------------------------------------------------------------
@@ -47,11 +43,7 @@ $(NETTLE_SOURCE):
nettle_extract: $(STATEDIR)/nettle.extract
$(STATEDIR)/nettle.extract: $(STATEDIR)/nettle.get
- @echo
- @echo --------------
- @echo target: nettle.extract
- @echo --------------
- @echo
+ @$(call targetinfo, nettle.extract)
$(NETTLE_EXTRACT) $(NETTLE_SOURCE) | $(TAR) -C $(BUILDDIR) -xf -
touch $@
@@ -67,11 +59,7 @@ NETTLE_AUTOCONF += --host=$(PTXCONF_GNU_TARGET)
NETTLE_AUTOCONF += --prefix=$(PTXCONF_PREFIX)
$(STATEDIR)/nettle.prepare: $(STATEDIR)/nettle.extract
- @echo
- @echo --------------
- @echo target: nettle.prepare
- @echo --------------
- @echo
+ @$(call targetinfo, nettle.prepare)
cd $(NETTLE_DIR) && \
PATH=$(PTXCONF_PREFIX)/bin:$$PATH ./configure $(NETTLE_AUTOCONF)
touch $@
@@ -83,11 +71,7 @@ $(STATEDIR)/nettle.prepare: $(STATEDIR)/nettle.extract
nettle_compile: $(STATEDIR)/nettle.compile
$(STATEDIR)/nettle.compile: $(STATEDIR)/nettle.prepare
- @echo
- @echo --------------
- @echo target: nettle.compile
- @echo --------------
- @echo
+ @$(call targetinfo, nettle.compile)
PATH=$(PTXCONF_PREFIX)/bin:$$PATH make -C $(NETTLE_DIR)
touch $@
@@ -98,11 +82,7 @@ $(STATEDIR)/nettle.compile: $(STATEDIR)/nettle.prepare
nettle_install: $(STATEDIR)/nettle.install
$(STATEDIR)/nettle.install: $(STATEDIR)/nettle.compile
- @echo
- @echo --------------
- @echo target: nettle.install
- @echo --------------
- @echo
+ @$(call targetinfo, nettle.install)
# FIXME: this doesn't work when using local bin directory...?
make -C $(NETTLE_DIR) install
touch $@
@@ -114,11 +94,7 @@ $(STATEDIR)/nettle.install: $(STATEDIR)/nettle.compile
nettle_targetinstall: $(STATEDIR)/nettle.targetinstall
$(STATEDIR)/nettle.targetinstall: $(STATEDIR)/nettle.install
- @echo
- @echo --------------------
- @echo target: nettle.targetinstall
- @echo --------------------
- @echo
+ @$(call targetinfo, nettle.targetinstall)
# nettle is only static at the moment
touch $@