From: Heiko Schlittermann (HS12-RIPE) Date: Tue, 1 Nov 2016 21:59:59 +0000 (+0100) Subject: Rename Makefile to GNUmakefile X-Git-Url: https://git.exim.org/buildfarm-client-wiki.git/commitdiff_plain/b657f8a45502e69433eb186c5f814e307fc41574?hp=30d02f8849d9889b5c5b7fce58613bb623ce6fb0 Rename Makefile to GNUmakefile --- diff --git a/GNUmakefile b/GNUmakefile new file mode 100644 index 0000000..1227631 --- /dev/null +++ b/GNUmakefile @@ -0,0 +1,10 @@ +INPUT = $(wildcard *.md) +OUTPUT = $(INPUT:.md=.html) + +all: $(OUTPUT) +clean: +distclean: clean + -rm -f $(OUTPUT) + +%.html: %.md + multimarkdown $< >$@ diff --git a/Makefile b/Makefile deleted file mode 100644 index 1227631..0000000 --- a/Makefile +++ /dev/null @@ -1,10 +0,0 @@ -INPUT = $(wildcard *.md) -OUTPUT = $(INPUT:.md=.html) - -all: $(OUTPUT) -clean: -distclean: clean - -rm -f $(OUTPUT) - -%.html: %.md - multimarkdown $< >$@