Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
gthess committed Jan 4, 2023
1 parent 455f020 commit a627c3c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@ help:
.PHONY: help Makefile man

# Wrap man target with our logic
# Rename all the generated files to be copied into the Unbound source
man: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
# Rename all the generated files to be copied into the Unbound source
for f in $(BUILDDIR)/man/*
do
mv $f $f.in
for f in $(BUILDDIR)/man/*; do \
mv $$f $$f.in; \
done

# Catch-all target: route all unknown targets to Sphinx using the new
Expand Down

0 comments on commit a627c3c

Please sign in to comment.