summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorTitus von Boxberg <titus@v9g.de>2010-05-17 12:11:08 (GMT)
committerTitus von Boxberg <titus@v9g.de>2010-05-17 12:11:08 (GMT)
commitebf80df032c51b562c9aee44da01d3f366abd76d (patch)
treed919a5c23d830fda720579057b54b22384e29cf3 /Makefile.in
parentafa2b0aa0d22b3570e8906e92667f1862f12972b (diff)
ct-ng: Add ability to configure and use some GNU tools
Make the paths to libtool, objcopy, objdump, readelf, patch configurable.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 6080fdf..9533b7b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -52,6 +52,11 @@ bash := @@bash@@
grep := @@grep@@
make := @@make@@
sed := @@sed@@
+libtool:= @@libtool@@
+objcopy:= @@objcopy@@
+objdump:= @@objdump@@
+readelf:= @@readelf@@
+patch := @@patch@@
###############################################################################
# Sanity checks
@@ -139,6 +144,11 @@ paths.mk:
echo "export grep=$(grep)"; \
echo "export make=$(make)"; \
echo "export sed=$(sed)"; \
+ echo "export libtool=$(libtool)"; \
+ echo "export objcopy=$(objcopy)"; \
+ echo "export objdump=$(objdump)"; \
+ echo "export readelf=$(readelf)"; \
+ echo "export patch=$(patch)"; \
) >paths.mk
#--------------------------------------