summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2015-05-19 09:50:34 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2015-05-19 09:51:43 +0000
commita16968232cbcffdf901650ac260689a1f3664dfe (patch)
tree9653299c75dcb15975a575be21f07a0daf9378eb /Makefile
parent062c5d3aece2e308aa7fc03acab1b3b6dd4270b2 (diff)
downloadinitramfs-scripts-a16968232cbcffdf901650ac260689a1f3664dfe.tar.gz
Convert build-system to autotools-like
This removes the need for an embedded morphology in the repository. Change-Id: I0ceff8f9b12458f7a4d0d5af10a6eba32fb44041
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e00cf30
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+
+SCRIPTS = init
+
+all:
+
+install: $(SCRIPTS)
+ for script in $^ ; do\
+ install -D -m 755 "$$script" $(DESTDIR)/"$$script"; \
+ done