summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorRoland Hieber <rohieb@rohieb.name>2018-11-13 21:10:56 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2018-11-17 19:00:12 +0100
commit98ea4609fd2baad35f6a6984713451c6818a5ddf (patch)
tree5e0fb9a8b99e5d2ba3f750af0cb91ca264a4a334 /Makefile.in
parent1066d24e0b982bf30c7f2c59fff562257ce0543d (diff)
downloadptxdist-98ea4609fd2baad35f6a6984713451c6818a5ddf.tar.gz
ptxdist-98ea4609fd2baad35f6a6984713451c6818a5ddf.tar.xz
Makefile: don't install .done, .gitignore and vim swap files
.done is created by make all, and is an empty file. .gitignore is only reasonable in git repositories, and we exclude .git/. vim swap files happen sometimes (e.g. when editing the makefile). Signed-off-by: Roland Hieber <rohieb@rohieb.name> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 40c676c2b..26e75b00b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -101,7 +101,10 @@ install: all dirty-check
@mkdir -p "$(DESTDIR)$(instdir)"
@tar -C "$(abs_srcdir)" -cf - \
--exclude *~ \
+ --exclude .*.sw* \
+ --exclude .done \
--exclude .git \
+ --exclude .gitignore \
--exclude .pc \
--exclude .svn \
--exclude autom4te.cache \