diff options
author | EuAndreh <eu@euandre.org> | 2024-08-29 10:33:16 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-08-29 10:33:16 -0300 |
commit | d7b514063be62f6658f58c6f8a79c463c1e90260 (patch) | |
tree | 8fa157c28c1a637787fdbc90839833407e6c3c6b | |
parent | src/untill: Remove -h and --help (diff) | |
download | eut-d7b514063be62f6658f58c6f8a79c463c1e90260.tar.gz eut-d7b514063be62f6658f58c6f8a79c463c1e90260.tar.xz |
Makefile: Adjust ending \\
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |