Files
webmin/vnc/utils/websockify/Makefile
2025-02-04 18:12:14 -05:00

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