mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
# $OpenLDAP$
|
|
# This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
#
|
|
# Copyright 1998-2011 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
|
|
# <http://www.OpenLDAP.org/license.html>.
|
|
|
|
LIBTOOL=../../../libtool
|
|
OPT=-g -O2
|
|
#LIBTOOL=../../../../ldap-devel/libtool
|
|
#OPT=-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: authzid.la
|
|
|
|
|
|
authzid.lo: authzid.c
|
|
$(LIBTOOL) --mode=compile $(CC) $(OPT) $(DEFS) $(INCS) -c $?
|
|
|
|
authzid.la: authzid.lo
|
|
$(LIBTOOL) --mode=link $(CC) $(OPT) -version-info 0:0:0 \
|
|
-rpath $(moduledir) -module -o $@ $? $(LIBS)
|
|
|
|
clean:
|
|
rm -f authzid.lo authzid.la
|
|
|
|
install: authzid.la
|
|
mkdir -p $(DESTDIR)$(moduledir)
|
|
$(LIBTOOL) --mode=install cp authzid.la $(DESTDIR)$(moduledir)
|
|
|