diff options
author | Chris Hiszpanski <chris.hiszpanski@verkada.com> | 2022-05-21 01:04:33 -0700 |
---|---|---|
committer | Chris Hiszpanski <chris.hiszpanski@verkada.com> | 2022-05-21 02:01:54 -0700 |
commit | 12df87e791ee6e468df31a6c468595b8c124a2b4 (patch) | |
tree | b3eea9989ed5412383ed9912bdaac3fb1412b570 /Makefile |
Bare bones demo
* ICE candidate parser
* Simple demo.html
* Outline of tinyrtc.h
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4d82061 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +example/webrtcd: example/main.c tinyrtc.h + $(CC) $(CFLAGS) -I. -o $@ example/main.c + +.PHONY: clean +clean: + rm -f example/webrtcd |