summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorChris Hiszpanski <chris@hiszpanski.name>2022-06-11 17:10:30 -0700
committerChris Hiszpanski <chris@hiszpanski.name>2022-06-11 17:10:30 -0700
commitf2c15c2af30820366fd4f52576dfbe38a430cf3e (patch)
tree984fbde20662e0db8644dbcf8192fabf86866e55 /Makefile
parent402e37321fbb1eea15ec5f1af0b1f4566dcffa7a (diff)
Toy STUN clienttinystun
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index be9ee9f..b8dfc2a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,9 @@
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