~squid/squid/sbuf-use

« back to all changes in this revision

Viewing changes to helpers/ntlm_auth/SMB/smbval/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
# makefile for smblib
 
2
# Type make system, where system is ULTRIX, DU, DECOSF1, Solaris etc
 
3
 
 
4
prefix          = @prefix@
 
5
exec_prefix     = @exec_prefix@
 
6
exec_suffix     = @exec_suffix@
 
7
top_srcdir      = @top_srcdir@
 
8
bindir          = @bindir@
 
9
srcdir          = @srcdir@
 
10
VPATH           = @srcdir@
 
11
 
 
12
CC              = @CC@
 
13
MAKEDEPEND      = @MAKEDEPEND@
 
14
INSTALL         = @INSTALL@
 
15
INSTALL_BIN     = @INSTALL_PROGRAM@
 
16
INSTALL_FILE    = @INSTALL_DATA@
 
17
RANLIB          = @RANLIB@
 
18
AC_CFLAGS       = @CFLAGS@
 
19
LDFLAGS         = @LDFLAGS@
 
20
XTRA_LIBS       = @XTRA_LIBS@
 
21
RM              = @RM@
 
22
AR_R            = @AR_R@
 
23
 
 
24
CFLAGS          = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
 
25
# CFLAGS = -fpic -g
 
26
 
 
27
INCLUDE  = -I. -I../../../../../../include -I$(top_srcdir)/include
 
28
INCLUDES = smblib.h smblib-priv.h
 
29
 
 
30
#RFCNB = session.o rfcnb-util.o rfcnb-io.o
 
31
 
 
32
#OBJS = smblib.o smblib-util.o file.o smb-errors.o exper.o smblib-api.o smbencrypt.o smbdes.o md4.o
 
33
 
 
34
VALIDATE = valid.o session.o rfcnb-util.o \
 
35
           rfcnb-io.o smblib-util.o smblib.o smbencrypt.o smbdes.o md4.o
 
36
 
 
37
#.SUFFIXES: .c .o .h
 
38
 
 
39
dummy: all
 
40
 
 
41
smbvalid.a:     $(VALIDATE) 
 
42
        $(RM) -f $@
 
43
        $(AR_R) $@ $(VALIDATE)
 
44
        $(RANLIB) $@
 
45
 
 
46
all: smbvalid.a
 
47
 
 
48
#.c.o:  $(INCLUDES)
 
49
 
 
50
clean:
 
51
        $(RM) -f *.o smbvalid.a *~
 
52