]> git.ipfire.org Git - thirdparty/squid.git/blame - helpers/ntlm_auth/no_check/Makefile.in
Major rewrite of proxy authentication to support other schemes than
[thirdparty/squid.git] / helpers / ntlm_auth / no_check / Makefile.in
CommitLineData
94439e4e 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
9prefix = @prefix@
10exec_prefix = @exec_prefix@
11exec_suffix = @exec_suffix@
12top_srcdir = @top_srcdir@
13bindir = @bindir@
14srcdir = @srcdir@
15VPATH = @srcdir@
16
17# Gotta love the DOS legacy
18#
19NO_CHECK = no_check
20
21CC = @CC@
22MAKEDEPEND = @MAKEDEPEND@
23INSTALL = @INSTALL@
24INSTALL_BIN = @INSTALL_PROGRAM@
25CRYPTLIB = @CRYPTLIB@
26AC_CFLAGS = @CFLAGS@
27LDFLAGS = @LDFLAGS@
28XTRA_LIBS = @XTRA_LIBS@
29XTRA_OBJS = @XTRA_OBJS@
30MV = @MV@
31RM = @RM@
32SHELL = /bin/sh
33
34
35INCLUDE = -I. -I../../../../../include -I$(top_srcdir)/include
36CFLAGS = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
37AUTH_LIBS = -L../../../../../lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)
38
39PROGS = $(NO_CHECK).pl
40OBJS = $(NO_CHECK)
41
42all: $(PROGS)
43
44#$(OBJS):
45
46$(NO_CHECK).pl: $(OBJS)
47 cp $(srcdir)/$(NO_CHECK) ./$(NO_CHECK).pl
48
49install-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
59install: 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
73clean:
74 -rm -rf *.o *pure_* core $(PROGS)
75
76distclean: clean
77 -rm -f Makefile
78
79depend:
80 $(MAKEDEPEND) -I../include -I. -fMakefile *.c