Add makefile for slapo-cloak

This commit is contained in:
Emmanuel Dreyfus 2009-02-02 22:14:07 +00:00
parent 2b08e96b53
commit f3254b319d

View file

@ -0,0 +1,15 @@
CPPFLAGS+=-I../../../include -I../../../servers/slapd
CPPFLAGS+=-DSLAPD_OVER_CLOAK=SLAPD_MOD_DYNAMIC
LIBS=-lldap_r -llber -lcrypto
all: cloak.la
cloak.lo: cloak.c
$(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) -c $?
cloak.la: cloak.lo
$(LIBTOOL) --mode=link $(CC) -version-info 0:0:0 \
-rpath $(PREFIX)/lib -module -o $@ $? $(LIBS)
clean:
rm cloak.lo cloak.la