archlinux/base/app/novnc/utils/websockify/Makefile
2024-07-25 02:07:59 +00:00

11 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