]> git.sur5r.net Git - openldap/commitdiff
libtoolize
authorEmmanuel Dreyfus <manu@openldap.org>
Sat, 31 Jan 2009 18:42:59 +0000 (18:42 +0000)
committerEmmanuel Dreyfus <manu@openldap.org>
Sat, 31 Jan 2009 18:42:59 +0000 (18:42 +0000)
contrib/slapd-modules/nops/Makefile

index 827a5ba2213d22e09f859bc1d3cdf62bb275e4df..3a12e21c215d0d94b884cf4e832328ba96c708d8 100644 (file)
@@ -1,9 +1,13 @@
 CPPFLAGS+=-I../../../include -I../../../servers/slapd
 
-all: nops.so
+all: nops.la
 
-nops.so: nops.c
-       $(CC) -shared $(CPPFLAGS) -Wall -o $@ $?
+nops.lo:    nops.c
+       $(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) -c $?
+
+nops.la:    nops.lo
+       $(LIBTOOL) --mode=link $(CC) -version-info 0:0:0 \
+                  -rpath $(PREFIX)/lib -module -o $@ $? 
 
 clean:
-       rm nops.so
+       rm nops.lo nops.la