Skip to content
Snippets Groups Projects
Commit 21daec13 authored by Lukas Fleischer's avatar Lukas Fleischer
Browse files

Makefile: Add a cleanup target


Allows for using `make clean` to remove any output files generated by
make(1).

Signed-off-by: default avatarLukas Fleischer <archlinux@cryptocrack.de>
parent 46c4def0
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,9 @@ all: $(BINPROGS) $(SBINPROGS) bash_completion zsh_completion
@chmod a-w "$@"
@chmod +x "$@"
clean:
rm -f $(BINPROGS) $(SBINPROGS) bash_completion zsh_completion
install:
install -dm0755 $(DESTDIR)$(PREFIX)/bin
install -dm0755 $(DESTDIR)$(PREFIX)/sbin
......@@ -84,4 +87,4 @@ dist:
upload:
scp devtools-$(V).tar.gz gerolde.archlinux.org:/srv/ftp/other/devtools/
.PHONY: all install uninstall dist upload
.PHONY: all clean install uninstall dist upload
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment