mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
e8e711018f
Fix typo
35 lines
1003 B
Makefile
35 lines
1003 B
Makefile
# $OpenLDAP$
|
|
# Copyright 2009 Jonathan Clarke <jonathan@phillipoux.net>.
|
|
# 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>.
|
|
|
|
CPPFLAGS+=-I../../../include -I../../../servers/slapd
|
|
CPPFLAGS+=-DSLAPD_OVER_LASTBIND=SLAPD_MOD_DYNAMIC
|
|
#LIBTOOL=libtool
|
|
LIBTOOL=../../../libtool
|
|
|
|
prefix=/usr/local
|
|
|
|
all: lastbind.la
|
|
|
|
lastbind.lo: lastbind.c
|
|
$(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) -Wall -c $?
|
|
|
|
lastbind.la: lastbind.lo
|
|
$(LIBTOOL) --mode=link $(CC) -version-info 0:0:0 \
|
|
-rpath $(prefix)/lib -module -o $@ $?
|
|
|
|
clean:
|
|
rm -rf lastbind.lo lastbind.la lastbind.o .libs/
|
|
|
|
install: lastbind.la
|
|
mkdir -p $(prefix)/libexec/openldap
|
|
$(LIBTOOL) --mode=install cp lastbind.la $(prefix)/libexec/openldap
|