"Fossies" - the Fresh Open Source Software Archive

Member "mod_auth_dce-3.4/auth_dce/Makefile.tmpl" (14 Jun 2001, 1999 Bytes) of package /linux/www/apache_httpd_modules/old/mod_auth_dce-3.4.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 
    2 LIB=libauth_dce.a
    3 
    4 OBJS=\
    5      mod_auth_dce.o \
    6      mod_auth_dce_cache.o
    7 
    8 OBJS_PIC=\
    9      mod_auth_dce.lo \
   10      mod_auth_dce_cache.lo
   11 
   12 all: lib
   13 
   14 lib: $(LIB)
   15 
   16 libauth_dce.a: $(OBJS)
   17 	rm -f $@
   18 	ar cr $@ $(OBJS)
   19 	$(RANLIB) $@
   20 
   21 libauth_dce.so: $(OBJS_PIC)
   22 	rm -f $@
   23 	$(LD_SHLIB) $(LDFLAGS_SHLIB) -o $@ $(OBJS_PIC) $(LIBS_SHLIB)
   24 
   25 .SUFFIXES: .o .lo
   26 
   27 .c.o:
   28 	$(CC) -c $(INCLUDES) $(CFLAGS) $<
   29 
   30 .c.lo:
   31 	$(CC) -c $(INCLUDES) $(CFLAGS) $(CFLAGS_SHLIB) $< && mv $*.o $*.lo
   32 
   33 clean:
   34 	rm -f $(OBJS) $(OBJS_PIC) $(LIB)
   35 
   36 distclean: clean
   37 	-rm -f Makefile
   38 
   39 # We really don't expect end users to use this rule.  It works only with
   40 # gcc, and rebuilds Makefile.tmpl.  You have to re-run Configure after
   41 # using it.
   42 depend:
   43 	cp Makefile.tmpl Makefile.tmpl.bak \
   44 	    && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.tmpl > Makefile.new \
   45 	    && gcc -MM $(INCLUDES) $(CFLAGS) *.c >> Makefile.new \
   46 	    && sed -e '1,$$s: $(INCDIR)/: $$(INCDIR)/:g' \
   47 	           -e '1,$$s: $(OSDIR)/: $$(OSDIR)/:g' Makefile.new \
   48 		> Makefile.tmpl \
   49 	    && rm Makefile.new
   50 
   51 #Dependencies
   52 
   53 $(OBJS) $(OBJS_PIC): Makefile
   54 
   55 # DO NOT REMOVE
   56 mod_auth_dce.o: mod_auth_dce.c mod_auth_dce.h $(INCDIR)/httpd.h \
   57  $(INCDIR)/ap_config.h $(INCDIR)/ap_mmn.h \
   58  $(INCDIR)/ap_config_auto.h $(OSDIR)/os.h \
   59  $(INCDIR)/ap_ctype.h $(INCDIR)/hsregex.h \
   60  $(INCDIR)/ap_alloc.h $(INCDIR)/buff.h $(INCDIR)/ap.h \
   61  $(INCDIR)/util_uri.h $(INCDIR)/http_config.h \
   62  $(INCDIR)/http_protocol.h $(INCDIR)/explain.h \
   63  $(INCDIR)/http_log.h $(INCDIR)/http_vhost.h \
   64  $(INCDIR)/http_request.h
   65 mod_auth_dce_cache.o: mod_auth_dce_cache.c mod_auth_dce.h $(INCDIR)/httpd.h \
   66  $(INCDIR)/ap_config.h $(INCDIR)/ap_mmn.h \
   67  $(INCDIR)/ap_config_auto.h $(OSDIR)/os.h \
   68  $(INCDIR)/ap_ctype.h $(INCDIR)/hsregex.h \
   69  $(INCDIR)/ap_alloc.h $(INCDIR)/buff.h $(INCDIR)/ap.h \
   70  $(INCDIR)/util_uri.h $(INCDIR)/http_config.h \
   71  $(INCDIR)/http_protocol.h $(INCDIR)/explain.h \
   72  $(INCDIR)/http_log.h $(INCDIR)/http_main.h \
   73  $(INCDIR)/util_date.h $(INCDIR)/multithread.h \
   74  $(INCDIR)/ap_md5.h