Makefile 153 B

1234567891011
  1. TARGETS=rebind.so
  2. CFLAGS += -fPIC
  3. all: $(TARGETS)
  4. rebind.so: rebind.o
  5. $(CC) $(LDFLAGS) $^ -shared -fPIC -ldl -o $@
  6. clean:
  7. rm -f rebind.o rebind.so