summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-08-29 10:33:16 -0300
committerEuAndreh <eu@euandre.org>2024-08-29 10:33:16 -0300
commitd7b514063be62f6658f58c6f8a79c463c1e90260 (patch)
tree8fa157c28c1a637787fdbc90839833407e6c3c6b
parentsrc/untill: Remove -h and --help (diff)
downloadeut-d7b514063be62f6658f58c6f8a79c463c1e90260.tar.gz
eut-d7b514063be62f6658f58c6f8a79c463c1e90260.tar.xz
Makefile: Adjust ending \\
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ba9cf8c..fa2b89e 100644
--- a/Makefile
+++ b/Makefile
@@ -67,7 +67,8 @@ clean:
install: all
mkdir -p \
'$(DESTDIR)$(BINDIR)' \
- '$(DESTDIR)$(SRCDIR)'
+ '$(DESTDIR)$(SRCDIR)' \
+
cp $(sources.sh) '$(DESTDIR)$(BINDIR)'
cp $(sources) '$(DESTDIR)$(SRCDIR)'
@@ -77,7 +78,8 @@ install: all
## A dedicated test asserts that this is always true.
uninstall:
rm -rf \
- '$(DESTDIR)$(SRCDIR)'
+ '$(DESTDIR)$(SRCDIR)' \
+
for f in $(sources.sh); do \
rm -f '$(DESTDIR)$(BINDIR)'/"$${f#src/}"; \
done