openldap/contrib/slapd-modules/nops/Makefile

17 lines
381 B
Makefile
Raw Normal View History

2009-02-03 03:32:35 +08:00
# $OpenLDAP$
CPPFLAGS+=-I../../../include -I../../../servers/slapd
CPPFLAGS+=-DSLAPD_OVER_NOPS=SLAPD_MOD_DYNAMIC
LIBS=-lldap_r -llber -lcrypto
2009-02-01 02:42:59 +08:00
all: nops.la
2009-02-01 02:42:59 +08:00
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:
2009-02-01 02:42:59 +08:00
rm nops.lo nops.la