mirror of
https://git.1024x2.xyz/1024x2/vexnc.git
synced 2025-04-12 01:46:31 +02:00
8 lines
162 B
Makefile
8 lines
162 B
Makefile
LIBS := $(shell pkg-config --cflags --libs libvncserver) -lm -Ivendor/
|
|
|
|
vexnc: vexnc.c
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS)
|
|
|
|
clean:
|
|
rm vexnc
|