diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 9bd56b00..8c244367 100644 --- a/Makefile +++ b/Makefile @@ -59,10 +59,13 @@ $(OBJDIR)/cha-%.md: doc/%.md | $(OBJDIR)/ $(OBJDIR)/cha-%.5: $(OBJDIR)/cha-%.md pandoc --standalone --to man $< -o $@ -.PHONY: manpage -manpage: $(OBJDIR)/cha-config.5 $(OBJDIR)/cha-mailcap.5 $(OBJDIR)/cha-mime.types.5 +$(OBJDIR)/cha.1: doc/cha.1 cp doc/cha.1 "$(OBJDIR)/cha.1" +.PHONY: manpage +manpage: $(OBJDIR)/cha-config.5 $(OBJDIR)/cha-mailcap.5 \ + $(OBJDIR)/cha-mime.types.5 $(OBJDIR)/cha.1 + .PHONY: install install: mkdir -p "$(DESTDIR)$(prefix)/bin" |