diff options
author | Kian Kasad <kdkasad@gmail.com> | 2020-05-04 01:20:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-04 01:20:45 -0700 |
commit | 507cf284a27d0664b4f981a43ed419a93680e2d2 (patch) | |
tree | 3b479d5883c5313813c3a5697305c82471442b94 | |
parent | 6e0519df3aeba97276d18a8e4bb7d41df675634c (diff) |
Change `cp`/`chmod` to `install`
The install command was meant for exactly this purpose; installing a file to a location and setting its permissions. This combines the `cp` and `chmod` commands into one `install` command.
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -6,7 +6,6 @@ clean: rm -f *.o *.gch dwmblocks install: output mkdir -p $(DESTDIR)$(PREFIX)/bin - cp -f dwmblocks $(DESTDIR)$(PREFIX)/bin - chmod 755 $(DESTDIR)$(PREFIX)/bin/dwmblocks + install -m 0755 dwmblocks $(DESTDIR)$(PREFIX)/bin/dwmblocks uninstall: rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks |