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