summaryrefslogtreecommitdiff
path: root/Makefile
blob: b8dfc2a25dd21114609192423295af096952a58f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
example/webrtcd: example/main.c tinyrtc.o
	$(CC) $(CFLAGS) -I. -o $@ example/main.c tinyrtc.o

tinystun: tinystun.c
	$(CC) $(CFLAGS) -Os -o $@ $^

tinyrtc.o: tinyrtc.c tinyrtc.h
	$(CC) $(CFLAGS) -I. -o $@ -c tinyrtc.c

.PHONY: clean
clean:
	rm -f tinyrtc.o example/webrtcd

.PHONY: run
run:
	websocketd --port=8080 --staticdir=example ./example/webrtcd