1# OpenLDAP: pkg/ldap/contrib/slapd-modules/nops/Makefile,v 1.1.2.4 2009/04/27 23:35:48 quanah Exp 2CPPFLAGS+=-I../../../include -I../../../servers/slapd 3CPPFLAGS+=-DSLAPD_OVER_NOPS=SLAPD_MOD_DYNAMIC 4LIBS=-L$(PREFIX)/lib -lldap_r -llber -lcrypto 5 6all: nops.la 7 8nops.lo: nops.c 9 $(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) -c $? 10 11nops.la: nops.lo 12 $(LIBTOOL) --mode=link $(CC) -version-info 0:0:0 \ 13 -rpath $(PREFIX)/lib -module -o $@ $? $(LIBS) 14 15clean: 16 rm -f nops.lo nops.la 17 18install: nops.la 19 mkdir -p $(PREFIX)/lib/openldap 20 mkdir -p $(PREFIX)/man/man5 21 $(LIBTOOL) --mode=install cp nops.la $(PREFIX)/lib/openldap 22 $(LIBTOOL) --finish $(PREFIX)/lib 23 cp nops.5 $(PREFIX)/man/man5 24