Skip to content

Commit

Permalink
Fix Makefile incorrect peer target usage (#608)
Browse files Browse the repository at this point in the history
  • Loading branch information
straight-shoota committed Jan 5, 2024
1 parent cd52acb commit 10fb04c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs.mk
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ manpages: $(MAN_FILES)
htmlpages: ## Generate HTML files from adoc
htmlpages: $(HTML_FILES)

man/%.1 man/%.5: docs/%.adoc
man/%.1: docs/%.adoc
SOURCE_DATE_EPOCH=$(SOURCE_DATE_EPOCH) $(ASCIIDOC) $(ASCIIDOC_OPTIONS) $< -b manpage -o $@

man/%.5: docs/%.adoc
SOURCE_DATE_EPOCH=$(SOURCE_DATE_EPOCH) $(ASCIIDOC) $(ASCIIDOC_OPTIONS) $< -b manpage -o $@

docs/%.html: docs/%.adoc
Expand Down

0 comments on commit 10fb04c

Please sign in to comment.