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