Browse Source

ajoute un Makefile pour générer le bazar

master
vince vince 2 years ago
parent
commit
662d762bb1
2 changed files with 11 additions and 0 deletions
  1. +2
    -0
      .gitignore
  2. +9
    -0
      Makefile

+ 2
- 0
.gitignore View File

@ -0,0 +1,2 @@
web
!web/.gitkeep

+ 9
- 0
Makefile View File

@ -0,0 +1,9 @@
TEMPLATE = template.html
all: web/style.css web/index.html
web/style.css: style.css
cp $< $@
web/%.html: %.md
pandoc --from markdown $< --output $@ --standalone --template $(TEMPLATE)

Loading…
Cancel
Save