~squid/squid/sbuf-use

« back to all changes in this revision

Viewing changes to src/auth/ntlm/Makefile.in

  • Committer: hno
  • Date: 2001-01-08 06:32:04 UTC
  • Revision ID: cvs-1:hno-20010108063204-w6a8e1zz6eprqnp8
Major rewrite of proxy authentication to support other schemes than
Basic (auth_rewrite branch on SourceForge).
Contributors:
   Andy Doran
   Robert Collins
   Chemolli Francesco
   Henrik Nordstrom

For details about the new API's, see Programmers Guide.

As part of this change everything from auth_modules has been moved to
src/auth/basic/helpers

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
#  Makefile for the ntlm authentication scheme module for the Squid Object Cache server
 
3
#
 
4
#  $Id: Makefile.in,v 1.1 2001/01/07 23:36:48 hno Exp $
 
5
#
 
6
 
 
7
AUTH            = ntlm
 
8
 
 
9
SUBDIRS         = helpers
 
10
 
 
11
top_srcdir      = @top_srcdir@
 
12
VPATH           = @srcdir@
 
13
 
 
14
CC              = @CC@
 
15
MAKEDEPEND      = @MAKEDEPEND@
 
16
AR_R            = @AR_R@
 
17
RANLIB          = @RANLIB@
 
18
AC_CFLAGS       = @CFLAGS@
 
19
SHELL           = /bin/sh
 
20
 
 
21
INCLUDE         = -I../../../include -I$(top_srcdir)/include -I$(top_srcdir)/src/
 
22
CFLAGS          = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
 
23
 
 
24
OUT             = ../$(AUTH).a
 
25
 
 
26
OBJS            = \
 
27
                auth_ntlm.o
 
28
 
 
29
 
 
30
all install: $(OUT)
 
31
        @for dir in $(SUBDIRS); do \
 
32
            if [ -f $$dir/Makefile ]; then \
 
33
                sh -c "cd $$dir && $(MAKE) $@" || exit 1; \
 
34
            fi; \
 
35
        done;
 
36
 
 
37
$(OUT): $(OBJS)
 
38
        @rm -f ../stamp
 
39
        $(AR_R) $(OUT) $(OBJS)
 
40
        $(RANLIB) $(OUT)
 
41
 
 
42
$(OBJS): $(top_srcdir)/include/version.h ../../../include/autoconf.h
 
43
 
 
44
.c.o:
 
45
        @rm -f ../stamp
 
46
        $(CC) $(CFLAGS) -c $<
 
47
 
 
48
clean: 
 
49
        -rm -rf *.o *pure_* core ../$(AUTH).a
 
50
        -for dir in *; do \
 
51
            if [ -f $$dir/Makefile ]; then \
 
52
                sh -c "cd $$dir && $(MAKE) clean"; \
 
53
            fi; \
 
54
        done
 
55
 
 
56
distclean:      clean
 
57
        -rm -f Makefile
 
58
        -rm -f Makefile.bak
 
59
        -rm -f tags
 
60
        -for dir in *; do \
 
61
            if [ -f $$dir/Makefile ]; then \
 
62
                sh -c "cd $$dir && $(MAKE) distclean"; \
 
63
            fi; \
 
64
        done
 
65
 
 
66
tags:
 
67
        ctags *.[ch] $(top_srcdir)/src/*.[ch] $(top_srcdir)/include/*.h $(top_srcdir)/lib/*.[ch]
 
68
 
 
69
depend:
 
70
        $(MAKEDEPEND) $(INCLUDE) -fMakefile *.c