Skip to content

Commit

Permalink
doc: fix MD_TARGETS
Browse files Browse the repository at this point in the history
globstar (**) does not work in Makefile
  • Loading branch information
mnacamura committed Jul 18, 2020
1 parent cf0e2d5 commit c9c6f5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MD_TARGETS=$(addsuffix .xml, $(basename $(wildcard ./*.md ./**/*.md)))
MD_TARGETS=$(addsuffix .xml, $(basename $(shell find . -type f -regex '.*\.md$$')))

.PHONY: all
all: validate format out/html/index.html out/epub/manual.epub
Expand Down

0 comments on commit c9c6f5f

Please sign in to comment.