Rename Makefile to GNUmakefile
[buildfarm-client-wiki.git] / GNUmakefile
diff --git a/GNUmakefile b/GNUmakefile
new file mode 100644 (file)
index 0000000..1227631
--- /dev/null
@@ -0,0 +1,10 @@
+INPUT = $(wildcard *.md)
+OUTPUT = $(INPUT:.md=.html)
+
+all:   $(OUTPUT)
+clean: 
+distclean:     clean
+       -rm -f $(OUTPUT)
+
+%.html:        %.md
+       multimarkdown $< >$@