summaryrefslogtreecommitdiffstats
path: root/rules/rootfs.make
diff options
context:
space:
mode:
Diffstat (limited to 'rules/rootfs.make')
-rw-r--r--rules/rootfs.make20
1 files changed, 10 insertions, 10 deletions
diff --git a/rules/rootfs.make b/rules/rootfs.make
index ce8b15215..43586bf76 100644
--- a/rules/rootfs.make
+++ b/rules/rootfs.make
@@ -1,10 +1,10 @@
# -*-makefile-*-
-# $Id: rootfs.make,v 1.5 2003/08/17 00:32:04 robert Exp $
+# $Id: rootfs.make,v 1.6 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.
#
@@ -29,11 +29,11 @@ ROOTFS_EXTRACT = gzip -dc
rootfs_get: $(STATEDIR)/rootfs.get
$(STATEDIR)/rootfs.get: $(ROOTFS_SOURCE)
- @$(call targetinfo, rootfs.get)
+ @$(call targetinfo, $@)
touch $@
$(ROOTFS_SOURCE):
- @$(call targetinfo, $(ROOTFS_SOURCE))
+ @$(call targetinfo, $@)
wget -P $(SRCDIR) $(PASSIVEFTP) $(ROOTFS_URL)
# ----------------------------------------------------------------------------
@@ -43,7 +43,7 @@ $(ROOTFS_SOURCE):
rootfs_extract: $(STATEDIR)/rootfs.extract
$(STATEDIR)/rootfs.extract: $(STATEDIR)/rootfs.get
- @$(call targetinfo, rootfs.extract)
+ @$(call targetinfo, $@)
$(ROOTFS_EXTRACT) $(ROOTFS_SOURCE) | $(TAR) -C $(BUILDDIR) -xf -
touch $@
@@ -54,7 +54,7 @@ $(STATEDIR)/rootfs.extract: $(STATEDIR)/rootfs.get
rootfs_prepare: $(STATEDIR)/rootfs.prepare
$(STATEDIR)/rootfs.prepare: $(STATEDIR)/rootfs.extract
- @$(call targetinfo, rootfs.prepare)
+ @$(call targetinfo, $@)
touch $@
# ----------------------------------------------------------------------------
@@ -64,7 +64,7 @@ $(STATEDIR)/rootfs.prepare: $(STATEDIR)/rootfs.extract
rootfs_compile: $(STATEDIR)/rootfs.compile
$(STATEDIR)/rootfs.compile: $(STATEDIR)/rootfs.prepare
- @$(call targetinfo, rootfs.compile)
+ @$(call targetinfo, $@)
touch $@
# ----------------------------------------------------------------------------
@@ -74,7 +74,7 @@ $(STATEDIR)/rootfs.compile: $(STATEDIR)/rootfs.prepare
rootfs_install: $(STATEDIR)/rootfs.install
$(STATEDIR)/rootfs.install: $(STATEDIR)/rootfs.compile
- @$(call targetinfo, rootfs.install)
+ @$(call targetinfo, $@)
touch $@
# ----------------------------------------------------------------------------
@@ -84,7 +84,7 @@ $(STATEDIR)/rootfs.install: $(STATEDIR)/rootfs.compile
rootfs_targetinstall: $(STATEDIR)/rootfs.targetinstall
$(STATEDIR)/rootfs.targetinstall: $(STATEDIR)/rootfs.install
- @$(call targetinfo, rootfs.targetinstall)
+ @$(call targetinfo, $@)
ifeq (y, $(PTXCONF_ROOTFS_PROC))
mkdir -p $(ROOTDIR)/proc
endif