Initial kermit

This commit is contained in:
2024-07-16 02:03:54 +01:00
commit 2283a9e345
5 changed files with 8032 additions and 0 deletions

7
Makefile Normal file
View File

@@ -0,0 +1,7 @@
LIBS := $(shell pkg-config --cflags --libs libvncserver) -lm -Ivendor/
vexnc: vexnc.c
$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS)
clean:
rm vexnc