summaryrefslogtreecommitdiff
path: root/digital/io/src/Makefile.getsamples
blob: 9e3287f4434b9f3c2c6ae025953a38988de431e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
CFLAGS = -O2 -Wall

all: prgm exe dot png 

prgm: getSamplesFsm.fsm getSamplesFsm.conf
	python ../../../tools/dfagen/dfagen.py -o c -d $< -c getSamplesFsm.conf -p getsamples 

exe: prgm 

dot: getSamplesFsm.fsm getSamplesFsm.conf
	python ../../../tools/dfagen/dfagen.py -o dot -d $< -c getSamplesFsm.conf -p getsamples

png: getsamples.dot
	dot -Tpng -o getsamples.png getsamples.dot

clean:
	rm -f getsamples.h
	rm -f getsamples_cb.h
	rm -f getsamples.dot
	rm -f getsamples.png
	rm -f getsamples.c