--- libavl-0.3.5.orig/GNUmakefile +++ libavl-0.3.5/GNUmakefile @@ -6,7 +6,8 @@ LDCONFIG ?= /sbin/ldconfig # Some suggestions: (-mcpu= generates i386 compatible code) -CFLAGS ?= -O2 -fomit-frame-pointer -pipe -mcpu=i686 -w +CFLAGS ?= -O2 -pipe -Wall -Werror +CFLAGS += -fPIC #CFLAGS = -O2 -fomit-frame-pointer -pipe -march=i586 -Wall -g #CFLAGS = -O6 -fomit-frame-pointer -pipe -march=i586 -Wall -ansi -pedantic #CFLAGS = -O6 -fomit-frame-pointer -pipe -march=i686 -Wall -ansi -pedantic @@ -34,20 +35,21 @@ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS) $(LIBRARY): avl.o - $(CC) -nostdlib -shared -Wl,-soname,libavl.so.1 $^ -o $@ -lc + $(CC) -shared -Wl,-soname,libavl.so.1 $^ -o $@ -lc clean: $(RM) *.o $(PROGRAMS) libavl.* install: all $(INSTALL) -d $(DESTDIR)$(libdir) - $(INSTALL) avl.h $(DESTDIR)$(includedir) - $(INSTALL) $(LIBRARIES) $(DESTDIR)$(libdir) - for i in $(LIBRARIES); do\ + $(INSTALL) -d $(DESTDIR)$(includedir) + $(INSTALL) -m 755 avl.h $(DESTDIR)$(includedir) + $(INSTALL) -m 755 $(LIBRARY) $(DESTDIR)$(libdir) + for i in $(LIBRARY); do\ $(LN) -sf $$i $(DESTDIR)$(libdir)/$${i%.*};\ $(LN) -sf $${i%.*} $(DESTDIR)$(libdir)/$${i%.*.*};\ done - -$(LDCONFIG) + #-$(LDCONFIG) .PHONY: clean install all .PRECIOUS: %.h %.c