File: Makefile

package info (click to toggle)
swapspace 1.18-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 712 kB
  • sloc: ansic: 1,980; sh: 1,350; makefile: 17
file content (9 lines) | stat: -rw-r--r-- 202 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
#! /bin/make

all: fsm.png

# Generate fsm.png from fsm.dot using the circo tool from the graphviz package,
# if available
fsm.png: fsm.dot
	if (which circo >/dev/null); then circo -Tpng $< -o $@ ; fi