From c9c6f5f6937b8703092363488bb6fa6c59c255f8 Mon Sep 17 00:00:00 2001 From: Mitsuhiro Nakamura Date: Wed, 8 Jul 2020 15:16:08 +0900 Subject: doc: fix MD_TARGETS globstar (**) does not work in Makefile --- doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/Makefile b/doc/Makefile index cdef493502b..49f361ebb60 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -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 -- cgit 1.4.1