summaryrefslogtreecommitdiffstats
path: root/doc/security-team.d.o/Makefile
blob: 82d9f640903c93157122489c0426f5d9ac67366d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
MD=/usr/bin/markdown_py
SOURCES=security_tracker glossary index contact
DEST=/srv/security-team.debian.org/htdocs
HTMLS=$(patsubst %,$(DEST)/%.html,$(SOURCES))
EXTENSIONS=tables def_list toc

all: $(HTMLS)

$(DEST)/%.html: %
	(cat header; /usr/bin/markdown_py $< $(addprefix -x ,$(EXTENSIONS)) ) > $@

.PHONY: clean all rebuild

clean:
	rm $(HTMLS)

rebuild : clean all

© 2014-2024 Faster IT GmbH | imprint | privacy policy