summaryrefslogtreecommitdiff
path: root/ldso/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ldso/Makefile')
-rw-r--r--ldso/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/ldso/Makefile b/ldso/Makefile
new file mode 100644
index 000000000..23626f5e3
--- /dev/null
+++ b/ldso/Makefile
@@ -0,0 +1,13 @@
+include Config.mk
+
+SUBDIRS = util d-link # man
+
+all:
+ set -e ; for d in $(SUBDIRS) ; do $(MAKE) -C $$d ; done
+
+install: all
+ sh instldso.sh
+
+clean:
+ set -e ; for d in $(SUBDIRS) ; do $(MAKE) -C $$d $@ ; done
+ -find . -name '*~' | xargs rm -f