Home | History | Annotate | Line # | Download | only in nops
Makefile revision 1.1.1.3.10.1
      1       1.1.1.3    tron # $OpenLDAP$
      2       1.1.1.3    tron 
      3       1.1.1.3    tron LDAP_SRC = ../../..
      4  1.1.1.3.10.1  bouyer LDAP_BUILD = $(LDAP_SRC)
      5       1.1.1.3    tron LDAP_INC = -I$(LDAP_BUILD)/include -I$(LDAP_SRC)/include -I$(LDAP_SRC)/servers/slapd
      6       1.1.1.3    tron LDAP_LIB = $(LDAP_BUILD)/libraries/libldap_r/libldap_r.la \
      7       1.1.1.3    tron 	$(LDAP_BUILD)/libraries/liblber/liblber.la
      8       1.1.1.3    tron 
      9       1.1.1.3    tron LIBTOOL = $(LDAP_BUILD)/libtool
     10       1.1.1.3    tron CC = gcc
     11       1.1.1.3    tron OPT = -g -O2 -Wall
     12       1.1.1.3    tron DEFS = -DSLAPD_OVER_NOPS=SLAPD_MOD_DYNAMIC
     13       1.1.1.3    tron INCS = $(LDAP_INC)
     14       1.1.1.3    tron LIBS = $(LDAP_LIB)
     15       1.1.1.3    tron 
     16       1.1.1.3    tron PROGRAMS = nops.la
     17       1.1.1.3    tron LTVER = 0:0:0
     18       1.1.1.3    tron 
     19       1.1.1.3    tron prefix=/usr/local
     20       1.1.1.3    tron exec_prefix=$(prefix)
     21       1.1.1.3    tron ldap_subdir=/openldap
     22       1.1.1.3    tron 
     23       1.1.1.3    tron libdir=$(exec_prefix)/lib
     24       1.1.1.3    tron libexecdir=$(exec_prefix)/libexec
     25       1.1.1.3    tron moduledir = $(libexecdir)$(ldap_subdir)
     26       1.1.1.3    tron 
     27       1.1.1.3    tron .SUFFIXES: .c .o .lo
     28       1.1.1.3    tron 
     29       1.1.1.3    tron .c.lo:
     30       1.1.1.3    tron 	$(LIBTOOL) --mode=compile $(CC) $(OPT) $(DEFS) $(INCS) -c $<
     31       1.1.1.3    tron 
     32       1.1.1.3    tron all: $(PROGRAMS)
     33       1.1.1.3    tron 
     34       1.1.1.3    tron nops.la: nops.lo
     35       1.1.1.3    tron 	$(LIBTOOL) --mode=link $(CC) $(OPT) -version-info $(LTVER) \
     36       1.1.1.3    tron 	-rpath $(moduledir) -module -o $@ $? $(LIBS)
     37           1.1   lukem 
     38           1.1   lukem clean:
     39       1.1.1.3    tron 	rm -rf *.o *.lo *.la .libs
     40       1.1.1.3    tron 
     41       1.1.1.3    tron install: $(PROGRAMS)
     42       1.1.1.3    tron 	mkdir -p $(DESTDIR)$(moduledir)
     43       1.1.1.3    tron 	for p in $(PROGRAMS) ; do \
     44       1.1.1.3    tron 		$(LIBTOOL) --mode=install cp $$p $(DESTDIR)$(moduledir) ; \
     45       1.1.1.3    tron 	done
     46       1.1.1.2   lukem 
     47