summaryrefslogtreecommitdiffstats
path: root/rules/ldd.make
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2008-05-06 08:13:01 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2008-05-06 08:13:01 +0000
commit5d1c767f9c69b84181ebb6ef0e6baa0f5042124d (patch)
tree04c540a0c48ab14c8000d37397abd07fc62320b1 /rules/ldd.make
parentb124567b853c3e6d3f0b8c478441aeaedd220225 (diff)
downloadptxdist-5d1c767f9c69b84181ebb6ef0e6baa0f5042124d.tar.gz
ptxdist-5d1c767f9c69b84181ebb6ef0e6baa0f5042124d.tar.xz
* rules/ldd.make:
trimmed down git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8121 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/ldd.make')
-rw-r--r--rules/ldd.make50
1 files changed, 19 insertions, 31 deletions
diff --git a/rules/ldd.make b/rules/ldd.make
index ebdff9989..fd8a06910 100644
--- a/rules/ldd.make
+++ b/rules/ldd.make
@@ -15,65 +15,54 @@
PACKAGES-$(PTXCONF_LDD) += ldd
# This is the version from the glibc we have stolen from
-LDD_VERSION := 2.3.6
-LDD_DIR := $(BUILDDIR)/ldd
+LDD_VERSION := 2.7
# ----------------------------------------------------------------------------
# Get
# ----------------------------------------------------------------------------
-ldd_get: $(STATEDIR)/ldd.get
-
-$(STATEDIR)/ldd.get: $(ldd_get_deps_default)
- @$(call targetinfo, $@)
- @$(call touch, $@)
+$(STATEDIR)/ldd.get:
+ @$(call targetinfo)
+ @$(call touch)
# ----------------------------------------------------------------------------
# Extract
# ----------------------------------------------------------------------------
-ldd_extract: $(STATEDIR)/ldd.extract
-
-$(STATEDIR)/ldd.extract: $(ldd_extract_deps_default)
- @$(call targetinfo, $@)
- @$(call touch, $@)
+$(STATEDIR)/ldd.extract:
+ @$(call targetinfo)
+ @$(call touch)
# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------
-$(STATEDIR)/ldd.prepare: $(ldd_prepare_deps_default)
- @$(call targetinfo, $@)
- @$(call touch, $@)
+$(STATEDIR)/ldd.prepare:
+ @$(call targetinfo)
+ @$(call touch)
# ----------------------------------------------------------------------------
# Compile
# ----------------------------------------------------------------------------
-ldd_compile: $(STATEDIR)/ldd.compile
-
-$(STATEDIR)/ldd.compile: $(ldd_compile_deps_default)
- @$(call targetinfo, $@)
- @$(call touch, $@)
+$(STATEDIR)/ldd.compile:
+ @$(call targetinfo)
+ @$(call touch)
# ----------------------------------------------------------------------------
# Install
# ----------------------------------------------------------------------------
-ldd_install: $(STATEDIR)/ldd.install
-
-$(STATEDIR)/ldd.install: $(ldd_install_deps_default)
- @$(call targetinfo, $@)
- @$(call touch, $@)
+$(STATEDIR)/ldd.install:
+ @$(call targetinfo)
+ @$(call touch)
# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------
-ldd_targetinstall: $(STATEDIR)/ldd.targetinstall
-
-$(STATEDIR)/ldd.targetinstall: $(ldd_targetinstall_deps_default)
- @$(call targetinfo, $@)
+$(STATEDIR)/ldd.targetinstall:
+ @$(call targetinfo)
@$(call install_init, ldd)
@$(call install_fixup,ldd,PACKAGE,ldd)
@@ -88,7 +77,7 @@ $(STATEDIR)/ldd.targetinstall: $(ldd_targetinstall_deps_default)
@$(call install_finish,ldd)
- @$(call touch, $@)
+ @$(call touch)
# ----------------------------------------------------------------------------
# Clean
@@ -97,6 +86,5 @@ $(STATEDIR)/ldd.targetinstall: $(ldd_targetinstall_deps_default)
ldd_clean:
rm -rf $(STATEDIR)/ldd.*
rm -rf $(IMAGEDIR)/ldd_*
- rm -rf $(LDD_DIR)
# vim: syntax=make