0e6c2f5d95
Split of wsproxy from noVNC and rename it 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
|
|
|