https://github.com/kanaka/websockify is now the canonical location of websockify (formerly wsproxy). A copy of the python version is kept here for backwards compatibility and ease-of-use. The other versions and related test scripts are in websockify.
12 lines
153 B
Makefile
12 lines
153 B
Makefile
TARGETS=rebind.so
|
|
CFLAGS += -fPIC
|
|
|
|
all: $(TARGETS)
|
|
|
|
rebind.so: rebind.o
|
|
$(CC) $(LDFLAGS) $^ -shared -fPIC -ldl -o $@
|
|
|
|
clean:
|
|
rm -f rebind.o rebind.so
|
|
|