Makefile 153 Bytes
Newer Older
1
TARGETS=rebind.so
2 3 4 5
CFLAGS += -fPIC

all: $(TARGETS)

6 7 8
rebind.so: rebind.o
	$(CC) $(LDFLAGS) $^ -shared -fPIC -ldl -o $@

9
clean:
10
	rm -f rebind.o rebind.so
11