mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-28 09:39:18 -05:00
15 lines
368 B
Makefile
15 lines
368 B
Makefile
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
|