1 # $OpenLDAP$ 2 # This work is part of OpenLDAP Software <http://www.openldap.org/>. 3 # 4 # Copyright 1998-2019 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 LIBTOOL = $(LDAP_BUILD)/libtool 22 CC = gcc 23 OPT = -g -O2 -Wall 24 DEFS = -DSLAPD_OVER_RDNVAL=SLAPD_MOD_DYNAMIC \ 25 -DSLAPD_OVER_PGUID=SLAPD_MOD_DYNAMIC \ 26 -DSLAPD_OVER_VERNUM=SLAPD_MOD_DYNAMIC 27 INCS = $(LDAP_INC) 28 LIBS = $(LDAP_LIB) 29 30 PROGRAMS = pguid.la rdnval.la vernum.la 31 LTVER = 0:0:0 32 33 prefix=/usr/local 34 exec_prefix=$(prefix) 35 ldap_subdir=/openldap 36 37 libdir=$(exec_prefix)/lib 38 libexecdir=$(exec_prefix)/libexec 39 moduledir = $(libexecdir)$(ldap_subdir) 40 41 .SUFFIXES: .c .o .lo 42 43 .c.lo: 44 $(LIBTOOL) --mode=compile $(CC) $(OPT) $(DEFS) $(INCS) -c $< 45 46 all: $(PROGRAMS) 47 48 pguid.la: pguid.lo 49 $(LIBTOOL) --mode=link $(CC) $(OPT) -version-info $(LTVER) \ 50 -rpath $(moduledir) -module -o $@ $? $(LIBS) 51 52 rdnval.la: rdnval.lo 53 $(LIBTOOL) --mode=link $(CC) $(OPT) -version-info $(LTVER) \ 54 -rpath $(moduledir) -module -o $@ $? $(LIBS) 55 56 vernum.la: vernum.lo 57 $(LIBTOOL) --mode=link $(CC) $(OPT) -version-info $(LTVER) \ 58 -rpath $(moduledir) -module -o $@ $? $(LIBS) 59 60 clean: 61 rm -rf *.o *.lo *.la .libs 62 63 install: $(PROGRAMS) 64 mkdir -p $(DESTDIR)$(moduledir) 65 for p in $(PROGRAMS) ; do \ 66 $(LIBTOOL) --mode=install cp $$p $(DESTDIR)$(moduledir) ; \ 67 done 68 69