1
0
mirror of https://git.sr.ht/~adnano/kiln synced 2024-09-16 19:21:35 +02:00

Makefile: Use phony target

This commit is contained in:
adnano 2022-07-06 09:04:10 -04:00
parent 0301276c75
commit 01674d3d05

View File

@ -10,19 +10,19 @@ GOFLAGS?=
all: kiln docs
kiln:
$(GO) build $(GOFLAGS) -o $@
docs: docs/kiln.1
.1.scd.1:
scdoc < $< > $@
kiln: *.go go.mod go.sum config.toml templates/_default/*
$(GO) build $(GOFLAGS) -o $@
clean:
$(RM) kiln
$(RM) docs/kiln.1
install: all
install:
mkdir -p $(DESTDIR)$(BINDIR) $(DESTDIR)$(MANDIR)/man1
install -m755 kiln $(DESTDIR)$(BINDIR)/kiln
install -m644 docs/kiln.1 $(DESTDIR)$(MANDIR)/man1/kiln.1
@ -31,4 +31,4 @@ uninstall:
$(RM) $(DESTDIR)$(BINDIR)/kiln
$(RM) $(DESTDIR)$(MANDIR)/man1/kiln.1
.PHONY: all docs clean install uninstall
.PHONY: all kiln docs clean install uninstall