Link the dl library.
Annotate for file Makefile
2009-02-17 tobias 1 all: fopenr.so
23:15:35 ' 2
' 3 fopenr.so: fopenRedirect.o
2009-02-21 Alan 4 gcc -shared -ldl -o fopenr.so fopenRedirect.o
2009-02-17 tobias 5
23:15:35 ' 6 fopenRedirect.o: fopenRedirect.c
2009-02-21 tobias 7 gcc -Wall -fpic -c fopenRedirect.c
2009-02-17 tobias 8
23:15:35 ' 9 .PHONY: clean
' 10 clean:
2009-02-21 tobias 11 rm -f *.o
10:26:12 ' 12 rm -f *.so