softwarelivrenoestado.com.br

ref: master

./Makefile


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
ENTRY_FILE = MANIFESTO.md
TITLE = "Software Livre no Estado"

# This requires pandoc 2.0+
PANDOC ?= pandoc -H header.html -A footer.html

all:
	$(PANDOC) $(ENTRY_FILE) --metadata title=$(TITLE) -o index.html

clean:
	rm -rf index.html