]> git.ipfire.org Git - thirdparty/squid.git/blame - helpers/digest_auth/password/Makefile.in
SSL->HTTP gatewaying support by Benno Rice
[thirdparty/squid.git] / helpers / digest_auth / password / Makefile.in
CommitLineData
2d70df72 1#
2# Makefile for the Squid Object Cache server
3#
1f7c9178 4# $Id: Makefile.in,v 1.2 2001/04/14 00:03:25 hno Exp $
2d70df72 5#
6# Uncomment and customize the following to suit your needs:
7#
8
9prefix = @prefix@
10exec_prefix = @exec_prefix@
11exec_suffix = @exec_suffix@
12cgi_suffix = @cgi_suffix@
13top_srcdir = @top_srcdir@
14bindir = @bindir@
15libexecdir = @libexecdir@
16sysconfdir = @sysconfdir@
17localstatedir = @localstatedir@
18srcdir = @srcdir@
19VPATH = @srcdir@
20
21# Gotta love the DOS legacy
22#
23DIGEST_PW_AUTH_EXE = digest_pw_auth$(exec_suffix)
24
25DEFAULT_PASSWD_FILE = $(sysconfdir)/digest_passwd
26
27CC = @CC@
28MAKEDEPEND = @MAKEDEPEND@
29INSTALL = @INSTALL@
30INSTALL_BIN = @INSTALL_PROGRAM@
31INSTALL_FILE = @INSTALL_DATA@
32INSTALL_SUID = @INSTALL_PROGRAM@ -o root -m 4755
33RANLIB = @RANLIB@
34LN_S = @LN_S@
35PERL = @PERL@
36CRYPTLIB = @CRYPTLIB@
37REGEXLIB = @REGEXLIB@
38PTHREADLIB = @PTHREADLIB@
39SNMPLIB = @SNMPLIB@
40MALLOCLIB = @LIB_MALLOC@
41AC_CFLAGS = @CFLAGS@
42LDFLAGS = @LDFLAGS@
43XTRA_LIBS = @XTRA_LIBS@
44XTRA_OBJS = @XTRA_OBJS@
45MV = @MV@
46RM = @RM@
47SHELL = /bin/sh
1f7c9178 48SSLLIB = @SSLLIB@
2d70df72 49
50INCLUDE = -I. -I../../../../../include -I$(top_srcdir)/include
51CFLAGS = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
1f7c9178 52AUTH_LIBS = -L../../../../../lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS) $(SSLLIB)
2d70df72 53
54PROGS = $(DIGEST_PW_AUTH_EXE)
55OBJS = digest_pw_auth.o
56
57all: $(DIGEST_PW_AUTH_EXE)
58
59$(OBJS): $(top_srcdir)/include/version.h
60
61$(DIGEST_PW_AUTH_EXE): digest_pw_auth.o
62 $(CC) $(LDFLAGS) digest_pw_auth.o -o $@ $(AUTH_LIBS)
63
64install-mkdirs:
65 -@if test ! -d $(prefix); then \
66 echo "mkdir $(prefix)"; \
67 mkdir $(prefix); \
68 fi
69 -@if test ! -d $(bindir); then \
70 echo "mkdir $(bindir)"; \
71 mkdir $(bindir); \
72 fi
73
74# Michael Lupp <mike@nemesis.saar.de> wants to know about additions
75# to the install target.
76install: all install-mkdirs
77 @for f in $(PROGS); do \
78 if test -f $(bindir)/$$f; then \
79 echo $(MV) $(bindir)/$$f $(bindir)/-$$f; \
80 $(MV) $(bindir)/$$f $(bindir)/-$$f; \
81 fi; \
82 echo $(INSTALL_BIN) $$f $(bindir); \
83 $(INSTALL_BIN) $$f $(bindir); \
84 if test -f $(bindir)/-$$f; then \
85 echo $(RM) -f $(bindir)/-$$f; \
86 $(RM) -f $(bindir)/-$$f; \
87 fi; \
88 done
89
90clean:
91 -rm -rf *.o *pure_* core $(PROGS)
92
93distclean: clean
94 -rm -f Makefile
95
96tags:
97 ctags *.[ch] ../include/*.h ../lib/*.[ch]
98
99depend:
100 $(MAKEDEPEND) -I../include -I. -fMakefile *.c