~squid/squid/sbuf-use

« back to all changes in this revision

Viewing changes to helpers/basic_auth/MSNT/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:44 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
cgi_suffix      = @cgi_suffix@
 
13
top_srcdir      = @top_srcdir@
 
14
bindir          = @bindir@
 
15
libexecdir      = @libexecdir@
 
16
sysconfdir      = @sysconfdir@
 
17
localstatedir   = @localstatedir@
 
18
srcdir          = @srcdir@
 
19
VPATH           = @srcdir@
 
20
 
 
21
# Gotta love the DOS legacy
 
22
#
 
23
AUTH_EXE        = msnt_auth$(exec_suffix)
 
24
 
 
25
CC              = @CC@
 
26
MAKEDEPEND      = @MAKEDEPEND@
 
27
INSTALL         = @INSTALL@
 
28
INSTALL_BIN     = @INSTALL_PROGRAM@
 
29
INSTALL_FILE    = @INSTALL_DATA@
 
30
INSTALL_SUID    = @INSTALL_PROGRAM@ -o root -m 4755
 
31
RANLIB          = @RANLIB@
 
32
LN_S            = @LN_S@
 
33
PERL            = @PERL@
 
34
CRYPTLIB        = @CRYPTLIB@
 
35
REGEXLIB        = @REGEXLIB@
 
36
PTHREADLIB      = @PTHREADLIB@
 
37
SNMPLIB         = @SNMPLIB@
 
38
MALLOCLIB       = @LIB_MALLOC@
 
39
AC_CFLAGS       = @CFLAGS@
 
40
LDFLAGS         = @LDFLAGS@
 
41
XTRA_LIBS       = @XTRA_LIBS@
 
42
XTRA_OBJS       = @XTRA_OBJS@
 
43
MV              = @MV@
 
44
RM              = @RM@
 
45
SHELL           = /bin/sh
 
46
DEFINES         = 
 
47
 
 
48
INCLUDE         = -I. -I../../../../../include -I$(top_srcdir)/include
 
49
CFLAGS          = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
 
50
AUTH_LIBS       = $(XTRA_LIBS)
 
51
 
 
52
LIBPROGS        = $(AUTH_EXE)
 
53
OBJS            = md4.o rfcnb-io.o rfcnb-util.o session.o msntauth.o \
 
54
                  smbdes.o smbencrypt.o smblib-util.o smblib.o \
 
55
                  valid.o denyusers.o allowusers.o confload.o
 
56
 
 
57
all:    $(AUTH_EXE)
 
58
 
 
59
$(AUTH_EXE): $(OBJS)
 
60
        $(CC) $(LDFLAGS) $(OBJS) -o $@ $(AUTH_LIBS)
 
61
 
 
62
install-mkdirs:
 
63
        -@if test ! -d $(prefix); then \
 
64
                echo "mkdir $(prefix)"; \
 
65
                mkdir $(prefix); \
 
66
        fi
 
67
        -@if test ! -d $(libexecdir); then \
 
68
                echo "mkdir $(libexecdir)"; \
 
69
                mkdir $(libexecdir); \
 
70
        fi
 
71
 
 
72
# Michael Lupp <mike@nemesis.saar.de> wants to know about additions
 
73
# to the install target.
 
74
install: all install-mkdirs
 
75
        @for f in $(LIBPROGS); do \
 
76
                if test -f $(libexecdir)/$$f; then \
 
77
                        echo $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
 
78
                        $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
 
79
                fi; \
 
80
                echo $(INSTALL_BIN) $$f $(libexecdir); \
 
81
                $(INSTALL_BIN) $$f $(libexecdir); \
 
82
                if test -f $(libexecdir)/-$$f; then \
 
83
                        echo $(RM) -f $(libexecdir)/-$$f; \
 
84
                        $(RM) -f $(libexecdir)/-$$f; \
 
85
                fi; \
 
86
        done
 
87
 
 
88
clean: 
 
89
        -rm -rf *.o *.a *pure_* core $(LIBPROGS)
 
90
 
 
91
distclean:      clean
 
92
        -rm -f Makefile
 
93
 
 
94
tags:
 
95
        ctags *.[ch]
 
96
 
 
97
depend:
 
98
        $(MAKEDEPEND) -fMakefile *.c