From 1070d16a7c3027e7c05992a8f3ab01b11e2236cb Mon Sep 17 00:00:00 2001 From: Louie S Date: Tue, 16 Jan 2024 10:08:35 -0500 Subject: Added page about dash docsets --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c12b344 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +BASENAMES=$(basename $(wildcard *.md)) +SOURCES=$(foreach source,$(BASENAMES),$(source).md) +TARGETS=$(foreach target,$(BASENAMES),$(target).html) + +.PHONY: all +all: $(TARGETS) + +%.html: %.md + marked -o $@ $< + +.PHONY: clean +clean: + rm -f $(TARGETS) -- cgit