1# LIBREWRITE
2# $OpenLDAP$
3## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4##
5## Copyright 1998-2011 The OpenLDAP Foundation.
6## All rights reserved.
7##
8## Redistribution and use in source and binary forms, with or without
9## modification, are permitted only as authorized by the OpenLDAP
10## Public License.
11##
12## A copy of this license is available in the file LICENSE in the
13## top-level directory of the distribution or, alternatively, at
14## <http://www.OpenLDAP.org/license.html>.
15##
16## Copyright 2000-2001 Pierangelo Masarati <ando@sys-net.it>
17##
18
19SRCS = config.c context.c info.c ldapmap.c map.c params.c rule.c \
20	session.c subst.c var.c xmap.c \
21	parse.c rewrite.c
22XSRCS = version.c
23OBJS = config.o context.o info.o ldapmap.o map.o params.o rule.o \
24	session.o subst.o var.o xmap.o
25
26LDAP_INCDIR= ../../include       
27LDAP_LIBDIR= ../../libraries
28
29LIBRARY = librewrite.a
30PROGRAMS	= rewrite
31XLIBS = $(LIBRARY) $(LDAP_LIBLUTIL_A) \
32	$(LDAP_LIBLDAP_R_LA) $(LDAP_LIBLBER_LA)
33XXLIBS  = $(SECURITY_LIBS) $(LUTIL_LIBS)
34XXXLIBS = $(LTHREAD_LIBS)
35
36rewrite:	$(XLIBS) rewrite.o parse.o
37	$(LTLINK) -o $@ rewrite.o parse.o $(LIBS)
38