aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/telephony-and-music/Makefile
blob: 10560cbe53eb9dfeed1436d24752c3a14a56b0bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
COMMANDS = init cleanup monitor end-call receive-or-make-call

all: ${COMMANDS}

%: %.c
	${CC} -Wall -Wextra -pedantic -std=c99 -lbus -o $@ $<

clean:
	-rm ${COMMANDS}


.PHONY: all clean