]> git.sur5r.net Git - openldap/blobdiff - contrib/slapd-modules/nops/Makefile
ITS#7309 contrib/slapd-modules: Unify the structure and usage of Makefile
[openldap] / contrib / slapd-modules / nops / Makefile
index fce44e0c2dca5ab655569264ff84502d0bb45421..5cf03751bce54d0bdd491401c72cfaae5b6e19a0 100644 (file)
@@ -1,23 +1,46 @@
 # $OpenLDAP$
-CPPFLAGS+=-I../../../include -I../../../servers/slapd 
-CPPFLAGS+=-DSLAPD_OVER_NOPS=SLAPD_MOD_DYNAMIC
-LIBS=-L$(PREFIX)/lib -lldap_r -llber -lcrypto
 
-all: nops.la
+LDAP_SRC = ../../..
+LDAP_BUILD = ../../..
+LDAP_INC = -I$(LDAP_BUILD)/include -I$(LDAP_SRC)/include -I$(LDAP_SRC)/servers/slapd
+LDAP_LIB = $(LDAP_BUILD)/libraries/libldap_r/libldap_r.la \
+       $(LDAP_BUILD)/libraries/liblber/liblber.la
 
-nops.lo:    nops.c
-       $(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) -c $?
+LIBTOOL = $(LDAP_BUILD)/libtool
+CC = gcc
+OPT = -g -O2 -Wall
+DEFS = -DSLAPD_OVER_NOPS=SLAPD_MOD_DYNAMIC
+INCS = $(LDAP_INC)
+LIBS = $(LDAP_LIB)
 
-nops.la:    nops.lo
-       $(LIBTOOL) --mode=link $(CC) -version-info 0:0:0 \
-                  -rpath $(PREFIX)/lib -module -o $@ $? $(LIBS)
+PROGRAMS = nops.la
+LTVER = 0:0:0
+
+prefix=/usr/local
+exec_prefix=$(prefix)
+ldap_subdir=/openldap
+
+libdir=$(exec_prefix)/lib
+libexecdir=$(exec_prefix)/libexec
+moduledir = $(libexecdir)$(ldap_subdir)
+
+.SUFFIXES: .c .o .lo
+
+.c.lo:
+       $(LIBTOOL) --mode=compile $(CC) $(OPT) $(DEFS) $(INCS) -c $<
+
+all: $(PROGRAMS)
+
+nops.la: nops.lo
+       $(LIBTOOL) --mode=link $(CC) $(OPT) -version-info $(LTVER) \
+       -rpath $(moduledir) -module -o $@ $? $(LIBS)
 
 clean:
-       rm -f nops.lo nops.la
-
-install: nops.la
-       mkdir -p $(PREFIX)/lib/openldap 
-       mkdir -p $(PREFIX)/man/man5
-       $(LIBTOOL) --mode=install cp nops.la $(PREFIX)/lib/openldap
-       $(LIBTOOL) --finish $(PREFIX)/lib
-       cp nops.5 $(PREFIX)/man/man5
+       rm -rf *.o *.lo *.la .libs
+
+install: $(PROGRAMS)
+       mkdir -p $(DESTDIR)$(moduledir)
+       for p in $(PROGRAMS) ; do \
+               $(LIBTOOL) --mode=install cp $$p $(DESTDIR)$(moduledir) ; \
+       done
+