v4orb2.wiki

описание пикапов и диссектора ВЭПП3-4
git clone http://www.inp.nsk.su/~bekhte/v4orb2.wiki.git
Log | Files | Refs

commit 5296ba51290988607f56caaca4274cfaf61b46e4
parent 69c64757899c9c357d250a763c6eb3f48efc7b32
Author: S S <ss@qoo>
Date:   Mon Feb  1 15:57:40 +0600

add makefile

Diffstat:
Makefile | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -0,0 +1,9 @@ + +HTML:=$(patsubst %.md,%.html,$(wildcard *.md)) + +all: $(HTML) + @echo SUCCESS + +%.html: %.md Makefile + ~/bin/multimarkdown -o $@ $< +