2003-11-26 10:58:56 +08:00
|
|
|
# LIBREWRITE
|
2001-05-12 08:51:28 +08:00
|
|
|
# $OpenLDAP$
|
2003-11-26 15:16:36 +08:00
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
##
|
2005-01-02 04:49:32 +08:00
|
|
|
## Copyright 1998-2005 The OpenLDAP Foundation.
|
2003-11-26 10:58:56 +08:00
|
|
|
## All rights reserved.
|
2001-05-12 08:51:28 +08:00
|
|
|
##
|
2003-11-26 10:58:56 +08:00
|
|
|
## 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>.
|
2001-05-12 08:51:28 +08:00
|
|
|
##
|
|
|
|
## Copyright 2000-2001 Pierangelo Masarati <ando@sys-net.it>
|
|
|
|
##
|
|
|
|
|
|
|
|
SRCS = config.c context.c info.c ldapmap.c map.c params.c rule.c \
|
2003-11-15 02:39:18 +08:00
|
|
|
session.c subst.c var.c xmap.c \
|
2001-05-12 08:51:28 +08:00
|
|
|
parse.c rewrite.c
|
|
|
|
XSRCS = version.c
|
|
|
|
OBJS = config.o context.o info.o ldapmap.o map.o params.o rule.o \
|
2003-11-15 02:39:18 +08:00
|
|
|
session.o subst.o var.o xmap.o
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
LDAP_INCDIR= ../../include
|
|
|
|
LDAP_LIBDIR= ../../libraries
|
|
|
|
|
|
|
|
LIBRARY = librewrite.a
|
|
|
|
PROGRAMS = rewrite
|
2003-11-26 12:17:25 +08:00
|
|
|
XLIBS = $(LIBRARY) $(LDAP_LIBLUTIL_A) \
|
2002-02-11 06:42:51 +08:00
|
|
|
$(LDAP_LIBLDAP_R_LA) $(LDAP_LIBLBER_LA)
|
2003-11-26 07:19:47 +08:00
|
|
|
XXLIBS = $(SECURITY_LIBS) $(LUTIL_LIBS)
|
2001-05-12 08:51:28 +08:00
|
|
|
XXXLIBS = $(LTHREAD_LIBS)
|
|
|
|
|
2002-02-11 06:42:51 +08:00
|
|
|
rewrite: $(XLIBS) rewrite.o parse.o
|
2001-05-12 08:51:28 +08:00
|
|
|
$(LTLINK) -o $@ rewrite.o parse.o $(LIBS)
|