openldap/contrib/slapd-modules/nops/Makefile
Emmanuel Dreyfus b5baf7fd01 libtoolize autogroup
add install rules for autogroup, nops and smbk5pwd
2009-02-07 22:10:24 +00:00

24 lines
607 B
Makefile

# $OpenLDAP$
CPPFLAGS+=-I../../../include -I../../../servers/slapd
CPPFLAGS+=-DSLAPD_OVER_NOPS=SLAPD_MOD_DYNAMIC
LIBS=-L$(PREFIX)/lib -lldap_r -llber -lcrypto
all: nops.la
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 $@ $? $(LIBS)
clean:
rm -f nops.lo nops.la
install: nops.la
mkdir -p $(PREFIX)/lib/openldap
mkdir -p $(PREFIX)/man/man5
$(LIBTOOL) --mode=install cp nops.la $(PREFIX)/lib/openldap
$(LIBTOOL) --finish $(PREFIX)/lib
cp nops.5 $(PREFIX)/man/man5