summaryrefslogtreecommitdiffstats
path: root/rules/portmap.make
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2003-10-23 15:01:19 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2003-10-23 15:01:19 +0000
commita8ad8f5b6429e82b659f2f11548f68bcb353b00a (patch)
tree2dbd95fd14619c038a721d6414ada33a256caeb9 /rules/portmap.make
parent091ef762efcd334a15a7785fbf82e2c393d665ec (diff)
downloadptxdist-a8ad8f5b6429e82b659f2f11548f68bcb353b00a.tar.gz
ptxdist-a8ad8f5b6429e82b659f2f11548f68bcb353b00a.tar.xz
* merge with testing-branch
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunk@608 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/portmap.make')
-rw-r--r--rules/portmap.make22
1 files changed, 11 insertions, 11 deletions
diff --git a/rules/portmap.make b/rules/portmap.make
index d16282d91..571c264a7 100644
--- a/rules/portmap.make
+++ b/rules/portmap.make
@@ -1,10 +1,10 @@
# -*-makefile-*-
-# $Id: portmap.make,v 1.6 2003/09/17 23:43:59 mkl Exp $
+# $Id: portmap.make,v 1.7 2003/10/23 15:01:19 mkl Exp $
#
-# (c) 2002 by Pengutronix e.K., Hildesheim, Germany
+# Copyright (C) 2002 by Pengutronix e.K., Hildesheim, Germany
# See CREDITS for details about who has contributed to this project.
#
-# For further information about the PTXDIST project and license conditions
+# For further information about the PTXdist project and license conditions
# see the README file.
#
@@ -30,11 +30,11 @@ PORTMAP_DIR = $(BUILDDIR)/$(PORTMAP)
portmap_get: $(STATEDIR)/portmap.get
$(STATEDIR)/portmap.get: $(PORTMAP_SOURCE)
- @$(call targetinfo, portmap.get)
+ @$(call targetinfo, $@)
touch $@
$(PORTMAP_SOURCE):
- @$(call targetinfo, $(PORTMAP_SOURCE))
+ @$(call targetinfo, $@)
@$(call get, $(PORTMAP_URL))
# ----------------------------------------------------------------------------
@@ -44,7 +44,7 @@ $(PORTMAP_SOURCE):
portmap_extract: $(STATEDIR)/portmap.extract
$(STATEDIR)/portmap.extract: $(STATEDIR)/portmap.get
- @$(call targetinfo, portmap.extract)
+ @$(call targetinfo, $@)
@$(call clean, $(PORTMAP_DIR))
@$(call extract, $(PORTMAP_SOURCE))
# apply some fixes
@@ -67,7 +67,7 @@ portmap_prepare_deps = \
$(STATEDIR)/portmap.extract
$(STATEDIR)/portmap.prepare: $(portmap_prepare_deps)
- @$(call targetinfo, portmap.prepare)
+ @$(call targetinfo, $@)
touch $@
# ----------------------------------------------------------------------------
@@ -81,7 +81,7 @@ PORTMAP_PATH = PATH=$(CROSS_PATH)
PORTMAP_MAKEVARS = WRAP_DIR=$(CROSS_LIB_DIR)/lib
$(STATEDIR)/portmap.compile: $(STATEDIR)/portmap.prepare
- @$(call targetinfo, portmap.compile)
+ @$(call targetinfo, $@)
$(PORTMAP_ENV) $(PORTMAP_PATH) \
make -C $(PORTMAP_DIR) $(PORTMAP_MAKEVARS)
touch $@
@@ -93,7 +93,7 @@ $(STATEDIR)/portmap.compile: $(STATEDIR)/portmap.prepare
portmap_install: $(STATEDIR)/portmap.install
$(STATEDIR)/portmap.install: $(STATEDIR)/portmap.compile
- @$(call targetinfo, portmap.install)
+ @$(call targetinfo, $@)
touch $@
# ----------------------------------------------------------------------------
@@ -103,11 +103,11 @@ $(STATEDIR)/portmap.install: $(STATEDIR)/portmap.compile
portmap_targetinstall: $(STATEDIR)/portmap.targetinstall
$(STATEDIR)/portmap.targetinstall: $(STATEDIR)/portmap.install
- @$(call targetinfo, portmap.targetinstall)
+ @$(call targetinfo, $@)
ifdef PTXCONF_PORTMAP_INSTALL_PORTMAPPER
mkdir -p $(ROOTDIR)/sbin
install $(PORTMAP_DIR)/portmap $(ROOTDIR)/sbin
- $(CROSSSTRIP) -R .notes -R .comment $(ROOTDIR)/sbin/portmap
+ $(CROSSSTRIP) -R .note -R .comment $(ROOTDIR)/sbin/portmap
endif
touch $@