File: Makefile

package info (click to toggle)
dose3 7.0.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,276 kB
  • sloc: ml: 25,053; python: 605; perl: 391; sh: 347; makefile: 187
file content (17 lines) | stat: -rw-r--r-- 240 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
MAIN=debcheck-primer

all: html pdf

html: $(MAIN).html
pdf: $(MAIN).pdf

$(MAIN).html:
	pandoc $(MAIN).md -o $(MAIN).html

$(MAIN).pdf:
	pandoc $(MAIN).md -o $(MAIN).pdf

clean:
	-rm -f $(MAIN).html $(MAIN).pdf

.phony: clean all pdf html