Home | History | Annotate | Line # | Download | only in back-dnssrv
Makefile.in revision 1.1.1.4.6.1
      1          1.1     lukem # Makefile.in for back-dnssrv
      2      1.1.1.4      tron # $OpenLDAP$
      3          1.1     lukem ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
      4          1.1     lukem ##
      5  1.1.1.4.6.1  pgoyette ## Copyright 1998-2016 The OpenLDAP Foundation.
      6          1.1     lukem ## Portions Copyright 1998-2003 Kurt D. Zeilenga.
      7          1.1     lukem ## All rights reserved.
      8          1.1     lukem ##
      9          1.1     lukem ## Redistribution and use in source and binary forms, with or without
     10          1.1     lukem ## modification, are permitted only as authorized by the OpenLDAP
     11          1.1     lukem ## Public License.
     12          1.1     lukem ##
     13          1.1     lukem ## A copy of this license is available in the file LICENSE in the
     14          1.1     lukem ## top-level directory of the distribution or, alternatively, at
     15          1.1     lukem ## <http://www.OpenLDAP.org/license.html>.
     16          1.1     lukem #
     17          1.1     lukem # ACKNOWLEDGEMENTS:
     18          1.1     lukem #  The DNSSRV backend was written by Kurt D. Zeilenga.
     19          1.1     lukem #
     20          1.1     lukem 
     21          1.1     lukem SRCS	= init.c bind.c search.c config.c referral.c
     22          1.1     lukem OBJS	= init.lo bind.lo search.lo config.lo referral.lo
     23          1.1     lukem 
     24          1.1     lukem LDAP_INCDIR= ../../../include       
     25          1.1     lukem LDAP_LIBDIR= ../../../libraries
     26          1.1     lukem 
     27          1.1     lukem BUILD_OPT = "--enable-dnssrv"
     28          1.1     lukem BUILD_MOD = @BUILD_DNSSRV@
     29          1.1     lukem 
     30          1.1     lukem mod_DEFS = -DSLAPD_IMPORT
     31          1.1     lukem MOD_DEFS = $(@BUILD_DNSSRV@_DEFS)
     32          1.1     lukem 
     33          1.1     lukem shared_LDAP_LIBS = $(LDAP_LIBLDAP_R_LA) $(LDAP_LIBLBER_LA)
     34          1.1     lukem NT_LINK_LIBS = -L.. -lslapd $(@BUILD_LIBS_DYNAMIC@_LDAP_LIBS)
     35          1.1     lukem UNIX_LINK_LIBS = $(@BUILD_LIBS_DYNAMIC@_LDAP_LIBS)
     36          1.1     lukem 
     37          1.1     lukem LIBBASE = back_dnssrv
     38          1.1     lukem 
     39          1.1     lukem XINCPATH = -I.. -I$(srcdir)/..
     40          1.1     lukem XDEFS = $(MODULES_CPPFLAGS)
     41          1.1     lukem 
     42          1.1     lukem all-local-lib:	../.backend
     43          1.1     lukem 
     44          1.1     lukem ../.backend: lib$(LIBBASE).a
     45          1.1     lukem 	@touch $@
     46          1.1     lukem 
     47