File: Makefile

package info (click to toggle)
funcparserlib 0.3.5-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 396 kB
  • sloc: python: 725; sh: 70; makefile: 37
file content (17 lines) | stat: -rw-r--r-- 200 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
DOTS = $(wildcard *.dot)
PNGS = $(patsubst %.dot,%.png,$(DOTS))
.PHONY = test png all clean

test:
	../run-tests

all: png test

png: $(PNGS)

%.png: %.dot
	dot -Tpng $< -o $@

clean:
	rm -f $(PNGS)