96af996c1d
Related to https://github.com/kanaka/noVNC/issues/58 (supporting Apple Remote Desktop).
15 lines
249 B
Makefile
15 lines
249 B
Makefile
TARGETS=websockify
|
|
CFLAGS += -fPIC
|
|
|
|
all: $(TARGETS)
|
|
|
|
websockify: websockify.o websocket.o
|
|
$(CC) $(LDFLAGS) $^ -lssl -lcrypto -lresolv -o $@
|
|
|
|
websocket.o: websocket.c websocket.h
|
|
websockify.o: websockify.c websocket.h
|
|
|
|
clean:
|
|
rm -f websockify *.o
|
|
|