diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2024-12-21 00:11:32 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2024-12-21 00:11:32 +0400 |
commit | a02782aead3a57d1a8c9f879fd0cc89b1a3bb0b9 (patch) | |
tree | 9c316ac1cc3d2f93d5174c69f607086c5fb73f94 /GNUmakefile | |
parent | e3d789eef4cafff88c7dca5c8093169edbc647e0 (diff) |
Makefile: renamed to GNUmakefile
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile new file mode 100644 index 0000000..9c23b0f --- /dev/null +++ b/GNUmakefile @@ -0,0 +1,12 @@ +SRC := $(shell find . -name '*.md') +HTML = $(SRC:.md=.html) + +all: $(HTML) build-page + +%.html: %.md + sh build-page $< > $@ + +clean: + rm -f $(HTML) + +.PHONY: all clean |