File: Makefile

package info (click to toggle)
rust-laurel 0.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,048 kB
  • sloc: ansic: 3,553; makefile: 65; sh: 50
file content (11 lines) | stat: -rw-r--r-- 330 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
all: performance.png performance.svg

.PHONY: clean
clean:
	rm -f *.png *.svg

performance.png: performance.gp $(wildcard *.dat)
	gnuplot -e "set terminal png background '#c0c0c0' ; set output \"$@\"" $<

performance.svg: performance.gp $(wildcard *.dat)
	gnuplot -e "set terminal svg background '#c0c0c0' ; set output \"$@\"" $<