mirror of
https://github.com/fcwu/docker-ubuntu-vnc-desktop
synced 2026-01-02 21:54:09 +01:00
11 lines
153 B
Makefile
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
|
|
|