summaryrefslogtreecommitdiff
path: root/Makefile
blob: 7dc1bc4f0313c84529dbe1aa67b15314498f3d7c (plain)
1
2
3
4
5
6
7
8
9
10
11
TARGETS=rebind.so
CFLAGS += -fPIC

all: $(TARGETS)

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

clean:
	rm -f rebind.o rebind.so