~squid/squid/sbuf-use

« back to all changes in this revision

Viewing changes to helpers/ntlm_auth/no_check/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 Squid Object Cache server
 
3
#
 
4
#  $Id: Makefile.in,v 1.1 2001/01/07 23:36:50 hno Exp $
 
5
#
 
6
#  Uncomment and customize the following to suit your needs:
 
7
#
 
8
 
 
9
prefix          = @prefix@
 
10
exec_prefix     = @exec_prefix@
 
11
exec_suffix     = @exec_suffix@
 
12
top_srcdir      = @top_srcdir@
 
13
bindir          = @bindir@
 
14
srcdir          = @srcdir@
 
15
VPATH           = @srcdir@
 
16
 
 
17
# Gotta love the DOS legacy
 
18
#
 
19
NO_CHECK        = no_check
 
20
 
 
21
CC              = @CC@
 
22
MAKEDEPEND      = @MAKEDEPEND@
 
23
INSTALL         = @INSTALL@
 
24
INSTALL_BIN     = @INSTALL_PROGRAM@
 
25
CRYPTLIB        = @CRYPTLIB@
 
26
AC_CFLAGS       = @CFLAGS@
 
27
LDFLAGS         = @LDFLAGS@
 
28
XTRA_LIBS       = @XTRA_LIBS@
 
29
XTRA_OBJS       = @XTRA_OBJS@
 
30
MV              = @MV@
 
31
RM              = @RM@
 
32
SHELL           = /bin/sh
 
33
 
 
34
 
 
35
INCLUDE         = -I. -I../../../../../include -I$(top_srcdir)/include
 
36
CFLAGS          = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
 
37
AUTH_LIBS       = -L../../../../../lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)
 
38
 
 
39
PROGS           = $(NO_CHECK).pl
 
40
OBJS            = $(NO_CHECK)
 
41
 
 
42
all:    $(PROGS)
 
43
 
 
44
#$(OBJS): 
 
45
 
 
46
$(NO_CHECK).pl: $(OBJS)
 
47
        cp $(srcdir)/$(NO_CHECK) ./$(NO_CHECK).pl
 
48
 
 
49
install-mkdirs:
 
50
        -@if test ! -d $(prefix); then \
 
51
                echo "mkdir $(prefix)"; \
 
52
                mkdir $(prefix); \
 
53
        fi
 
54
        -@if test ! -d $(bindir); then \
 
55
                echo "mkdir $(bindir)"; \
 
56
                mkdir $(bindir); \
 
57
        fi
 
58
 
 
59
install: all install-mkdirs
 
60
        @for f in $(PROGS); do \
 
61
                if test -f $(bindir)/$$f; then \
 
62
                        echo $(MV) $(bindir)/$$f $(bindir)/-$$f; \
 
63
                        $(MV) $(bindir)/$$f $(bindir)/-$$f; \
 
64
                fi; \
 
65
                echo $(INSTALL_BIN) $$f $(bindir); \
 
66
                $(INSTALL_BIN) $$f $(bindir); \
 
67
                if test -f $(bindir)/-$$f; then \
 
68
                        echo $(RM) -f $(bindir)/-$$f; \
 
69
                        $(RM) -f $(bindir)/-$$f; \
 
70
                fi; \
 
71
        done
 
72
 
 
73
clean: 
 
74
        -rm -rf *.o *pure_* core $(PROGS)
 
75
 
 
76
distclean:     clean
 
77
        -rm -f Makefile
 
78
 
 
79
depend:
 
80
        $(MAKEDEPEND) -I../include -I. -fMakefile *.c