9fcd92c39a
The canonical location is https://github.com/kumina/wsproxy There are now several external implementations of Websockify that I link to from https://github.com/kanaka/websockify/wiki/Feature_Matrix
15 lines
256 B
Makefile
15 lines
256 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 kumina *.o
|
|
|