openldap/contrib/slapd-modules/nops/Makefile
Quanah Gibson-Mount 43a35baf98 Add CVS header
2009-02-02 19:32:35 +00:00

17 lines
381 B
Makefile

# $OpenLDAP$
CPPFLAGS+=-I../../../include -I../../../servers/slapd
CPPFLAGS+=-DSLAPD_OVER_NOPS=SLAPD_MOD_DYNAMIC
LIBS=-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 nops.lo nops.la