Home | History | Annotate | Line # | Download | only in back-ldap
Makefile.in revision 1.1.1.3
      1      1.1  lukem # Makefile.in for back-ldap
      2  1.1.1.3   adam # OpenLDAP: pkg/ldap/servers/slapd/back-ldap/Makefile.in,v 1.30.2.7 2010/04/14 22:31:47 quanah Exp
      3      1.1  lukem ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
      4      1.1  lukem ##
      5  1.1.1.3   adam ## Copyright 1998-2010 The OpenLDAP Foundation.
      6      1.1  lukem ## All rights reserved.
      7      1.1  lukem ##
      8      1.1  lukem ## Redistribution and use in source and binary forms, with or without
      9      1.1  lukem ## modification, are permitted only as authorized by the OpenLDAP
     10      1.1  lukem ## Public License.
     11      1.1  lukem ##
     12      1.1  lukem ## A copy of this license is available in the file LICENSE in the
     13      1.1  lukem ## top-level directory of the distribution or, alternatively, at
     14      1.1  lukem ## <http://www.OpenLDAP.org/license.html>.
     15      1.1  lukem 
     16      1.1  lukem SRCS	= init.c config.c search.c bind.c unbind.c add.c compare.c \
     17      1.1  lukem 		delete.c modify.c modrdn.c extended.c chain.c \
     18  1.1.1.3   adam 		distproc.c monitor.c pbind.c
     19      1.1  lukem OBJS	= init.lo config.lo search.lo bind.lo unbind.lo add.lo compare.lo \
     20      1.1  lukem 		delete.lo modify.lo modrdn.lo extended.lo chain.lo \
     21  1.1.1.3   adam 		distproc.lo monitor.lo pbind.lo
     22      1.1  lukem 
     23      1.1  lukem LDAP_INCDIR= ../../../include       
     24      1.1  lukem LDAP_LIBDIR= ../../../libraries
     25      1.1  lukem 
     26      1.1  lukem BUILD_OPT = "--enable-ldap"
     27      1.1  lukem BUILD_MOD = @BUILD_LDAP@
     28      1.1  lukem 
     29      1.1  lukem mod_DEFS = -DSLAPD_IMPORT
     30      1.1  lukem MOD_DEFS = $(@BUILD_LDAP@_DEFS)
     31      1.1  lukem 
     32      1.1  lukem shared_LDAP_LIBS = $(LDAP_LIBLDAP_R_LA) $(LDAP_LIBLBER_LA)
     33      1.1  lukem NT_LINK_LIBS = -L.. -lslapd $(@BUILD_LIBS_DYNAMIC@_LDAP_LIBS)
     34      1.1  lukem UNIX_LINK_LIBS = $(@BUILD_LIBS_DYNAMIC@_LDAP_LIBS)
     35      1.1  lukem 
     36      1.1  lukem LIBBASE = back_ldap
     37      1.1  lukem 
     38      1.1  lukem XINCPATH = -I.. -I$(srcdir)/..
     39      1.1  lukem XDEFS = $(MODULES_CPPFLAGS)
     40      1.1  lukem 
     41      1.1  lukem all-local-lib:	../.backend
     42      1.1  lukem 
     43      1.1  lukem ../.backend: lib$(LIBBASE).a
     44      1.1  lukem 	@touch $@
     45      1.1  lukem 
     46