X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=contrib%2Fslapd-modules%2Fdupent%2FMakefile;fp=contrib%2Fslapd-modules%2Fdupent%2FMakefile;h=11a07c20b6026888b629cc889f09eb511e993119;hb=9813ce5504c3f0c4b2e87036862fce65f886a2cb;hp=0000000000000000000000000000000000000000;hpb=3e2ca2f8b26c8b732d8e129394a897968d9049cc;p=openldap diff --git a/contrib/slapd-modules/dupent/Makefile b/contrib/slapd-modules/dupent/Makefile new file mode 100644 index 0000000000..11a07c20b6 --- /dev/null +++ b/contrib/slapd-modules/dupent/Makefile @@ -0,0 +1,52 @@ +# $OpenLDAP$ +# This work is part of OpenLDAP Software . +# +# Copyright 1998-2010 The OpenLDAP Foundation. +# Copyright 2004 Howard Chu, Symas Corp. All Rights Reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted only as authorized by the OpenLDAP +# Public License. +# +# A copy of this license is available in the file LICENSE in the +# top-level directory of the distribution or, alternatively, at +# . + +LIBTOOL=../../../libtool +OPT=-DSLAPD_OVER_DUPENT=2 -g -O2 +#LIBTOOL=../../../../ldap-devel/libtool +#OPT=-DSLAPD_OVER_DUPENT=2 -g -O0 +CC=gcc + +LDAP_INC=-I../../../include -I../../../servers/slapd +#LDAP_INC=-I../../../include -I../../../servers/slapd -I../../../../ldap-devel/include +INCS=$(LDAP_INC) + +LDAP_LIB=-lldap_r -llber +LIBS=$(LDAP_LIB) + +prefix=/usr/local +exec_prefix=$(prefix) +ldap_subdir=/openldap + +libdir=$(exec_prefix)/lib +libexecdir=$(exec_prefix)/libexec +moduledir = $(libexecdir)$(ldap_subdir) + +all: dupent.la + + +dupent.lo: dupent.c + $(LIBTOOL) --mode=compile $(CC) $(OPT) $(DEFS) $(INCS) -c $? + +dupent.la: dupent.lo + $(LIBTOOL) --mode=link $(CC) $(OPT) -version-info 0:0:0 \ + -rpath $(moduledir) -module -o $@ $? $(LIBS) + +clean: + rm -f dupent.lo dupent.la + +install: dupent.la + mkdir -p $(DESTDIR)$(moduledir) + $(LIBTOOL) --mode=install cp dupent.la $(DESTDIR)$(moduledir) +