]> git.sur5r.net Git - openldap/blob - contrib/slapd-modules/smbk5pwd/Makefile
Happy New Year
[openldap] / contrib / slapd-modules / smbk5pwd / Makefile
1 # $OpenLDAP$
2 # This work is part of OpenLDAP Software <http://www.openldap.org/>.
3 #
4 # Copyright 1998-2018 The OpenLDAP Foundation.
5 # Copyright 2004 Howard Chu, Symas Corp. All Rights Reserved.
6 #
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted only as authorized by the OpenLDAP
9 # Public License.
10 #
11 # A copy of this license is available in the file LICENSE in the
12 # top-level directory of the distribution or, alternatively, at
13 # <http://www.OpenLDAP.org/license.html>.
14
15 LDAP_SRC = ../../..
16 LDAP_BUILD = $(LDAP_SRC)
17 LDAP_INC = -I$(LDAP_BUILD)/include -I$(LDAP_SRC)/include -I$(LDAP_SRC)/servers/slapd
18 LDAP_LIB = $(LDAP_BUILD)/libraries/libldap_r/libldap_r.la \
19         $(LDAP_BUILD)/libraries/liblber/liblber.la
20
21 SSL_INC = 
22 SSL_LIB = -lcrypto
23
24 HEIMDAL_INC = -I/usr/heimdal/include
25 HEIMDAL_LIB = -L/usr/heimdal/lib -lkrb5 -lkadm5srv
26
27 LIBTOOL = $(LDAP_BUILD)/libtool
28 CC = gcc
29 OPT = -g -O2 -Wall
30 # Omit DO_KRB5, DO_SAMBA or DO_SHADOW if you don't want to support it.
31 DEFS = -DDO_KRB5 -DDO_SAMBA -DDO_SHADOW
32 INCS = $(LDAP_INC) $(HEIMDAL_INC) $(SSL_INC)
33 LIBS = $(LDAP_LIB) $(HEIMDAL_LIB) $(SSL_LIB)
34
35 PROGRAMS = smbk5pwd.la
36 LTVER = 0:0:0
37
38 prefix=/usr/local
39 exec_prefix=$(prefix)
40 ldap_subdir=/openldap
41
42 libdir=$(exec_prefix)/lib
43 libexecdir=$(exec_prefix)/libexec
44 moduledir = $(libexecdir)$(ldap_subdir)
45
46 .SUFFIXES: .c .o .lo
47
48 .c.lo:
49         $(LIBTOOL) --mode=compile $(CC) $(OPT) $(DEFS) $(INCS) -c $<
50
51 all: $(PROGRAMS)
52
53 smbk5pwd.la:    smbk5pwd.lo
54         $(LIBTOOL) --mode=link $(CC) $(OPT) -version-info $(LTVER) \
55         -rpath $(moduledir) -module -o $@ $? $(LIBS)
56
57 clean:
58         rm -rf *.o *.lo *.la .libs
59
60 install: $(PROGRAMS)
61         mkdir -p $(DESTDIR)$(moduledir)
62         for p in $(PROGRAMS) ; do \
63                 $(LIBTOOL) --mode=install cp $$p $(DESTDIR)$(moduledir) ; \
64         done
65