summaryrefslogtreecommitdiffstats
path: root/rules/libc.make
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2009-06-10 00:16:41 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2009-06-10 00:16:41 +0000
commit31a7cea87307466171686e55c6d03368c18158fb (patch)
tree113482dd9a91cfc34bbb83051d11428dfc55823d /rules/libc.make
parente7e42350a5f83f426ca3986a9ec90fb2ce796ea8 (diff)
downloadptxdist-31a7cea87307466171686e55c6d03368c18158fb.tar.gz
ptxdist-31a7cea87307466171686e55c6d03368c18158fb.tar.xz
[libc] add do-nothing makefile
in order to let dependencies work correctly Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@10682 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/libc.make')
-rw-r--r--rules/libc.make72
1 files changed, 72 insertions, 0 deletions
diff --git a/rules/libc.make b/rules/libc.make
new file mode 100644
index 000000000..eccd74510
--- /dev/null
+++ b/rules/libc.make
@@ -0,0 +1,72 @@
+# -*-makefile-*-
+# $Id$
+#
+# Copyright (C) 2009 by Marc Kleine-Budde <mkl@pengutronix.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_LIBC) += libc
+
+# ----------------------------------------------------------------------------
+# Get
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/libc.get:
+ @$(call targetinfo)
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Extract
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/libc.extract:
+ @$(call targetinfo)
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/libc.prepare:
+ @$(call targetinfo)
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Compile
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/libc.compile:
+ @$(call targetinfo)
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/libc.install:
+ @$(call targetinfo)
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/libc.targetinstall:
+ @$(call targetinfo)
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Clean
+# ----------------------------------------------------------------------------
+
+libc_clean:
+ -rm -rf $(STATEDIR)/libc.*
+
+# vim: syntax=make