diff options
author | Stefan Tatschner <stefan@rumpelsepp.org> | 2019-05-22 22:33:09 +0200 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-05-22 16:34:45 -0400 |
commit | 78fc83ef3d73cd0a2d988e464d5caf1e7ccf79e3 (patch) | |
tree | 32561fde7ae34914f17fc9be5beb1acd57270a5b /Makefile | |
parent | 3e7ac52e1b56f8c626e803f23f1941eca22874f1 (diff) | |
download | aerc-78fc83ef3d73cd0a2d988e464d5caf1e7ccf79e3.tar.gz |
Makefile: Minor improvements, usage of $@ and $(RM)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 68d7895..5498a67 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ aerc: go build $(GOFLAGS) \ -ldflags "-X main.Prefix=$(PREFIX)" \ -ldflags "-X main.ShareDir=$(SHAREDIR)" \ - -o aerc + -o $@ %.1: doc/%.1.scd scdoc < $< > $@ @@ -32,7 +32,7 @@ doc: $(DOCS) all: aerc doc clean: - rm -f *.1 *.5 aerc + $(RM) *.1 *.5 *.7 aerc install: all mkdir -p $(BINDIR) $(MANDIR)/man1 $(MANDIR)/man5 $(MANDIR)/man7 \ |