Rename Makefile to GNUmakefile
authorHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>
Tue, 1 Nov 2016 21:59:59 +0000 (22:59 +0100)
committerHeiko Schlittermann <hs@schlittermann.de>
Tue, 1 Nov 2016 21:59:59 +0000 (22:59 +0100)
GNUmakefile [new file with mode: 0644]
Makefile [deleted file]

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 $< >$@
diff --git a/Makefile b/Makefile
deleted file mode 100644 (file)
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 $< >$@