File: Makefile

package info (click to toggle)
matlab2tikz 1.1.0-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,668 kB
  • sloc: objc: 6,143; makefile: 55; sh: 40
file content (19 lines) | stat: -rw-r--r-- 279 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# ./Makefile

EPSTOPDF:=epstopdf

REFERENCE_EPSS:=$(wildcard test*-reference.eps)
REFERENCE_PDFS:=$(REFERENCE_EPSS:.eps=.pdf)

default: $(REFERENCE_PDFS)

%.pdf: %.eps
	$(EPSTOPDF) $<

.PHONY: clean

clean:
	rm -f test*-reference.pdf

distclean: clean
	rm -f test*-reference.eps