]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Minor cleanup to put all auth helpers in libexec
authorhno <>
Fri, 20 Apr 2001 15:58:29 +0000 (15:58 +0000)
committerhno <>
Fri, 20 Apr 2001 15:58:29 +0000 (15:58 +0000)
helpers/basic_auth/NCSA/Makefile.in
helpers/basic_auth/YP/Makefile.in
helpers/basic_auth/getpwnam/Makefile.in
helpers/digest_auth/password/Makefile.in
helpers/ntlm_auth/SMB/Makefile.in
helpers/ntlm_auth/fakeauth/Makefile.in
helpers/ntlm_auth/no_check/Makefile.in

index dbb4a09d9cd07f9b5f117338e0e52adfa180ac28..e5eedd346a82cd973d6b5bf96748e740ec662589 100644 (file)
@@ -1,7 +1,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.2 2001/01/16 21:11:27 hno Exp $
+#  $Id: Makefile.in,v 1.3 2001/04/20 09:58:29 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -51,10 +51,10 @@ INCLUDE             = -I. -I../../../../../include -I$(top_srcdir)/include
 CFLAGS                 = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
 AUTH_LIBS      = -L../../../../../lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)
 
-PROGS           = $(NCSA_AUTH_EXE)
-OBJS           = ncsa_auth.o
+LIBPROGS       = $(NCSA_AUTH_EXE)
+OBJS           = ncsa_auth.o
 
-all:    $(NCSA_AUTH_EXE)
+all:    $(LIBPROGS)
 
 $(OBJS): $(top_srcdir)/include/version.h
 
@@ -66,29 +66,29 @@ install-mkdirs:
                echo "mkdir $(prefix)"; \
                mkdir -p $(prefix); \
        fi
-       -@if test ! -d $(bindir); then \
-               echo "mkdir $(bindir)"; \
-               mkdir -p $(bindir); \
+       -@if test ! -d $(libexecdir); then \
+               echo "mkdir $(libexecdir)"; \
+               mkdir -p $(libexecdir); \
        fi
 
 # Michael Lupp <mike@nemesis.saar.de> wants to know about additions
 # to the install target.
 install: all install-mkdirs
-       @for f in $(PROGS); do \
-               if test -f $(bindir)/$$f; then \
-                       echo $(MV) $(bindir)/$$f $(bindir)/-$$f; \
-                       $(MV) $(bindir)/$$f $(bindir)/-$$f; \
+       @for f in $(LIBPROGS); do \
+               if test -f $(libexecdir)/$$f; then \
+                       echo $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
+                       $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
                fi; \
-               echo $(INSTALL_BIN) $$f $(bindir); \
-               $(INSTALL_BIN) $$f $(bindir); \
-               if test -f $(bindir)/-$$f; then \
-                       echo $(RM) -f $(bindir)/-$$f; \
-                       $(RM) -f $(bindir)/-$$f; \
+               echo $(INSTALL_BIN) $$f $(libexecdir); \
+               $(INSTALL_BIN) $$f $(libexecdir); \
+               if test -f $(libexecdir)/-$$f; then \
+                       echo $(RM) -f $(libexecdir)/-$$f; \
+                       $(RM) -f $(libexecdir)/-$$f; \
                fi; \
        done
 
 clean: 
-       -rm -rf *.o *pure_* core $(PROGS)
+       -rm -rf *.o *pure_* core $(LIBPROGS)
 
 distclean:     clean
        -rm -f Makefile
index dd2cc8da564fdf39174586a8c55ca45f41f3f84e..76b11eb750bc79b56b80e6ba39943bb76a5ca58a 100644 (file)
@@ -1,7 +1,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.2 2001/01/16 21:11:28 hno Exp $
+#  $Id: Makefile.in,v 1.3 2001/04/20 09:58:30 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -51,10 +51,10 @@ INCLUDE             = -I. -I../../../../../include -I$(top_srcdir)/include
 CFLAGS                 = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
 AUTH_LIBS      = -L../../../../../lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)
 
-PROGS           = $(YP_AUTH_EXE)
+LIBPROGS           = $(YP_AUTH_EXE)
 OBJS           = yp_auth.o nis_support.o
 
-all:    $(YP_AUTH_EXE)
+all:    $(LIBPROGS)
 
 $(OBJS): $(top_srcdir)/include/version.h
 
@@ -66,29 +66,29 @@ install-mkdirs:
                echo "mkdir $(prefix)"; \
                mkdir -p $(prefix); \
        fi
-       -@if test ! -d $(bindir); then \
-               echo "mkdir $(bindir)"; \
-               mkdir -p $(bindir); \
+       -@if test ! -d $(libexecdir); then \
+               echo "mkdir $(libexecdir)"; \
+               mkdir -p $(libexecdir); \
        fi
 
 # Michael Lupp <mike@nemesis.saar.de> wants to know about additions
 # to the install target.
 install: all install-mkdirs
-       @for f in $(PROGS); do \
-               if test -f $(bindir)/$$f; then \
-                       echo $(MV) $(bindir)/$$f $(bindir)/-$$f; \
-                       $(MV) $(bindir)/$$f $(bindir)/-$$f; \
+       @for f in $(LIBPROGS); do \
+               if test -f $(libexecdir)/$$f; then \
+                       echo $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
+                       $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
                fi; \
-               echo $(INSTALL_BIN) $$f $(bindir); \
-               $(INSTALL_BIN) $$f $(bindir); \
-               if test -f $(bindir)/-$$f; then \
-                       echo $(RM) -f $(bindir)/-$$f; \
-                       $(RM) -f $(bindir)/-$$f; \
+               echo $(INSTALL_BIN) $$f $(libexecdir); \
+               $(INSTALL_BIN) $$f $(libexecdir); \
+               if test -f $(libexecdir)/-$$f; then \
+                       echo $(RM) -f $(libexecdir)/-$$f; \
+                       $(RM) -f $(libexecdir)/-$$f; \
                fi; \
        done
 
 clean: 
-       -rm -rf *.o *pure_* core $(PROGS)
+       -rm -rf *.o *pure_* core $(LIBPROGS)
 
 distclean:     clean
        -rm -f Makefile
index 6473cc49a22e5dbd0b80f0ab556b8b9a28b4743a..2b7dd848ed41e207a6d373177236e9291ce76957 100644 (file)
@@ -1,7 +1,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.2 2001/01/16 21:11:29 hno Exp $
+#  $Id: Makefile.in,v 1.3 2001/04/20 09:58:30 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -10,7 +10,7 @@ prefix                = @prefix@
 exec_prefix    = @exec_prefix@
 exec_suffix    = @exec_suffix@
 top_srcdir     = @top_srcdir@
-bindir         = @bindir@
+libexecdir     = @libexecdir@
 srcdir         = @srcdir@
 VPATH          = @srcdir@
 
@@ -36,10 +36,10 @@ INCLUDE             = -I. -I../../../../../include -I$(top_srcdir)/include
 CFLAGS         = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
 AUTH_LIBS      = -L../../../../../lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)
 
-PROGS          = $(GETPWNAM_AUTH_EXE)
+LIBPROGS       = $(GETPWNAM_AUTH_EXE)
 OBJS           = getpwnam_auth.o
 
-all:    $(GETPWNAM_AUTH_EXE)
+all:    $(LIBPROGS)
 
 $(OBJS): $(top_srcdir)/include/version.h
 
@@ -51,27 +51,27 @@ install-mkdirs:
                echo "mkdir $(prefix)"; \
                mkdir -p $(prefix); \
        fi
-       -@if test ! -d $(bindir); then \
-               echo "mkdir $(bindir)"; \
-               mkdir -p $(bindir); \
+       -@if test ! -d $(libexecdir); then \
+               echo "mkdir $(libexecdir)"; \
+               mkdir -p $(libexecdir); \
        fi
 
 install: all install-mkdirs
-       @for f in $(PROGS); do \
-               if test -f $(bindir)/$$f; then \
-                       echo $(MV) $(bindir)/$$f $(bindir)/-$$f; \
-                       $(MV) $(bindir)/$$f $(bindir)/-$$f; \
+       @for f in $(LIBPROGS); do \
+               if test -f $(libexecdir)/$$f; then \
+                       echo $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
+                       $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
                fi; \
-               echo $(INSTALL_BIN) $$f $(bindir); \
-               $(INSTALL_BIN) $$f $(bindir); \
-               if test -f $(bindir)/-$$f; then \
-                       echo $(RM) -f $(bindir)/-$$f; \
-                       $(RM) -f $(bindir)/-$$f; \
+               echo $(INSTALL_BIN) $$f $(libexecdir); \
+               $(INSTALL_BIN) $$f $(libexecdir); \
+               if test -f $(libexecdir)/-$$f; then \
+                       echo $(RM) -f $(libexecdir)/-$$f; \
+                       $(RM) -f $(libexecdir)/-$$f; \
                fi; \
        done
 
 clean: 
-       -rm -rf *.o *pure_* core $(PROGS)
+       -rm -rf *.o *pure_* core $(LIBPROGS)
 
 distclean:     clean
        -rm -f Makefile
index 66b83d6aa79d0551e8b9992efd865990c5237b9e..53150ad2f0e5b4394e7678190732b9d426b4d332 100644 (file)
@@ -1,7 +1,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.2 2001/04/14 00:03:25 hno Exp $
+#  $Id: Makefile.in,v 1.3 2001/04/20 09:58:31 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -51,10 +51,10 @@ INCLUDE             = -I. -I../../../../../include -I$(top_srcdir)/include
 CFLAGS                 = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
 AUTH_LIBS      = -L../../../../../lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS) $(SSLLIB)
 
-PROGS           = $(DIGEST_PW_AUTH_EXE)
+LIBPROGS       = $(DIGEST_PW_AUTH_EXE)
 OBJS           = digest_pw_auth.o
 
-all:    $(DIGEST_PW_AUTH_EXE)
+all:    $(LIBPROGS)
 
 $(OBJS): $(top_srcdir)/include/version.h
 
@@ -66,29 +66,29 @@ install-mkdirs:
                echo "mkdir $(prefix)"; \
                mkdir $(prefix); \
        fi
-       -@if test ! -d $(bindir); then \
-               echo "mkdir $(bindir)"; \
-               mkdir $(bindir); \
+       -@if test ! -d $(libexecdir); then \
+               echo "mkdir $(libexecdir)"; \
+               mkdir $(libexecdir); \
        fi
 
 # Michael Lupp <mike@nemesis.saar.de> wants to know about additions
 # to the install target.
 install: all install-mkdirs
-       @for f in $(PROGS); do \
-               if test -f $(bindir)/$$f; then \
-                       echo $(MV) $(bindir)/$$f $(bindir)/-$$f; \
-                       $(MV) $(bindir)/$$f $(bindir)/-$$f; \
+       @for f in $(LIBPROGS); do \
+               if test -f $(libexecdir)/$$f; then \
+                       echo $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
+                       $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
                fi; \
-               echo $(INSTALL_BIN) $$f $(bindir); \
-               $(INSTALL_BIN) $$f $(bindir); \
-               if test -f $(bindir)/-$$f; then \
-                       echo $(RM) -f $(bindir)/-$$f; \
-                       $(RM) -f $(bindir)/-$$f; \
+               echo $(INSTALL_BIN) $$f $(libexecdir); \
+               $(INSTALL_BIN) $$f $(libexecdir); \
+               if test -f $(libexecdir)/-$$f; then \
+                       echo $(RM) -f $(libexecdir)/-$$f; \
+                       $(RM) -f $(libexecdir)/-$$f; \
                fi; \
        done
 
 clean: 
-       -rm -rf *.o *pure_* core $(PROGS)
+       -rm -rf *.o *pure_* core $(LIBPROGS)
 
 distclean:     clean
        -rm -f Makefile
index e83646ab11121704fecd062113945ff717039ad6..b5f88088ccd456ee2ab79bfc1d9b7d781e9f6b09 100644 (file)
@@ -1,7 +1,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.2 2001/01/16 21:11:29 hno Exp $
+#  $Id: Makefile.in,v 1.3 2001/04/20 09:58:31 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -10,7 +10,7 @@ prefix                = @prefix@
 exec_prefix    = @exec_prefix@
 exec_suffix    = @exec_suffix@
 top_srcdir     = @top_srcdir@
-bindir         = @bindir@
+libexecdir             = @libexecdir@
 srcdir         = @srcdir@
 VPATH          = @srcdir@
 
@@ -36,7 +36,7 @@ INCLUDE               = -I. -I../../../../../include -I$(srcdir)/smbval -I$(top_srcdir)/inclu
 CFLAGS         = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
 AUTH_LIBS      = -L../../../../../lib -lntlmauth -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)
 
-PROGS          = $(NTLM_AUTH_EXE)
+LIBPROGS       = $(NTLM_AUTH_EXE)
 OBJS           = ntlm_auth.o libntlmssp.o
 
 all:   $(NTLM_AUTH_EXE)  smbval/smbvalid.a
@@ -56,27 +56,27 @@ install-mkdirs:
                echo "mkdir $(prefix)"; \
                mkdir -p $(prefix); \
        fi
-       -@if test ! -d $(bindir); then \
-               echo "mkdir $(bindir)"; \
-               mkdir -p $(bindir); \
+       -@if test ! -d $(libexecdir); then \
+               echo "mkdir $(libexecdir)"; \
+               mkdir -p $(libexecdir); \
        fi
 
 install: all install-mkdirs
-       @for f in $(PROGS); do \
-               if test -f $(bindir)/$$f; then \
-                       echo $(MV) $(bindir)/$$f $(bindir)/-$$f; \
-                       $(MV) $(bindir)/$$f $(bindir)/-$$f; \
+       @for f in $(LIBPROGS); do \
+               if test -f $(libexecdir)/$$f; then \
+                       echo $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
+                       $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
                fi; \
-               echo $(INSTALL_BIN) $$f $(bindir); \
-               $(INSTALL_BIN) $$f $(bindir); \
-               if test -f $(bindir)/-$$f; then \
-                       echo $(RM) -f $(bindir)/-$$f; \
-                       $(RM) -f $(bindir)/-$$f; \
+               echo $(INSTALL_BIN) $$f $(libexecdir); \
+               $(INSTALL_BIN) $$f $(libexecdir); \
+               if test -f $(libexecdir)/-$$f; then \
+                       echo $(RM) -f $(libexecdir)/-$$f; \
+                       $(RM) -f $(libexecdir)/-$$f; \
                fi; \
        done
 
 clean:
-       -rm -rf *.o *pure_* core $(PROGS)
+       -rm -rf *.o *pure_* core $(LIBPROGS)
        cd smbval; make clean
 
 distclean:     clean
index e3e2c7c4553a4e08d4f4cfb9544cde1430d251be..a8583a1b4f7aaeb112ba114f41301df7e907c091 100644 (file)
@@ -1,7 +1,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.2 2001/01/16 21:11:30 hno Exp $
+#  $Id: Makefile.in,v 1.3 2001/04/20 09:58:31 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -10,7 +10,7 @@ prefix                = @prefix@
 exec_prefix    = @exec_prefix@
 exec_suffix    = @exec_suffix@
 top_srcdir     = @top_srcdir@
-bindir         = @bindir@
+libexecdir             = @libexecdir@
 srcdir         = @srcdir@
 VPATH          = @srcdir@
 
@@ -36,7 +36,7 @@ INCLUDE               = -I. -I../../../../../include -I$(top_srcdir)/include
 CFLAGS         = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
 AUTH_LIBS      = -L../../../../../lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)
 
-PROGS          = $(FAKEAUTH_AUTH_EXE)
+LIBPROGS       = $(FAKEAUTH_AUTH_EXE)
 OBJS           = fakeauth_auth.o
 
 all:    $(FAKEAUTH_AUTH_EXE)
@@ -51,27 +51,27 @@ install-mkdirs:
                echo "mkdir $(prefix)"; \
                mkdir -p $(prefix); \
        fi
-       -@if test ! -d $(bindir); then \
-               echo "mkdir $(bindir)"; \
-               mkdir -p $(bindir); \
+       -@if test ! -d $(libexecdir); then \
+               echo "mkdir $(libexecdir)"; \
+               mkdir -p $(libexecdir); \
        fi
 
 install: all install-mkdirs
-       @for f in $(PROGS); do \
-               if test -f $(bindir)/$$f; then \
-                       echo $(MV) $(bindir)/$$f $(bindir)/-$$f; \
-                       $(MV) $(bindir)/$$f $(bindir)/-$$f; \
+       @for f in $(LIBPROGS); do \
+               if test -f $(libexecdir)/$$f; then \
+                       echo $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
+                       $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
                fi; \
-               echo $(INSTALL_BIN) $$f $(bindir); \
-               $(INSTALL_BIN) $$f $(bindir); \
-               if test -f $(bindir)/-$$f; then \
-                       echo $(RM) -f $(bindir)/-$$f; \
-                       $(RM) -f $(bindir)/-$$f; \
+               echo $(INSTALL_BIN) $$f $(libexecdir); \
+               $(INSTALL_BIN) $$f $(libexecdir); \
+               if test -f $(libexecdir)/-$$f; then \
+                       echo $(RM) -f $(libexecdir)/-$$f; \
+                       $(RM) -f $(libexecdir)/-$$f; \
                fi; \
        done
 
 clean: 
-       -rm -rf *.o *pure_* core $(PROGS)
+       -rm -rf *.o *pure_* core $(LIBPROGS)
 
 distclean:     clean
        -rm -f Makefile
index 57350823d35fb22b0896a28a6f26cd0297ba272e..66aa2590b8889281961f566471c5ce0bd55261d9 100644 (file)
@@ -1,7 +1,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.2 2001/01/16 21:11:31 hno Exp $
+#  $Id: Makefile.in,v 1.3 2001/04/20 09:58:32 hno Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -10,7 +10,7 @@ prefix                = @prefix@
 exec_prefix    = @exec_prefix@
 exec_suffix    = @exec_suffix@
 top_srcdir     = @top_srcdir@
-bindir         = @bindir@
+libexecdir             = @libexecdir@
 srcdir         = @srcdir@
 VPATH          = @srcdir@
 
@@ -36,10 +36,10 @@ INCLUDE             = -I. -I../../../../../include -I$(top_srcdir)/include
 CFLAGS         = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
 AUTH_LIBS      = -L../../../../../lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)
 
-PROGS          = $(NO_CHECK).pl
+LIBPROGS       = $(NO_CHECK).pl
 OBJS           = $(NO_CHECK)
 
-all:    $(PROGS)
+all:    $(LIBPROGS)
 
 #$(OBJS): 
 
@@ -51,27 +51,27 @@ install-mkdirs:
                echo "mkdir $(prefix)"; \
                mkdir -p $(prefix); \
        fi
-       -@if test ! -d $(bindir); then \
-               echo "mkdir $(bindir)"; \
-               mkdir -p $(bindir); \
+       -@if test ! -d $(libexecdir); then \
+               echo "mkdir $(libexecdir)"; \
+               mkdir -p $(libexecdir); \
        fi
 
 install: all install-mkdirs
-       @for f in $(PROGS); do \
-               if test -f $(bindir)/$$f; then \
-                       echo $(MV) $(bindir)/$$f $(bindir)/-$$f; \
-                       $(MV) $(bindir)/$$f $(bindir)/-$$f; \
+       @for f in $(LIBPROGS); do \
+               if test -f $(libexecdir)/$$f; then \
+                       echo $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
+                       $(MV) $(libexecdir)/$$f $(libexecdir)/-$$f; \
                fi; \
-               echo $(INSTALL_BIN) $$f $(bindir); \
-               $(INSTALL_BIN) $$f $(bindir); \
-               if test -f $(bindir)/-$$f; then \
-                       echo $(RM) -f $(bindir)/-$$f; \
-                       $(RM) -f $(bindir)/-$$f; \
+               echo $(INSTALL_BIN) $$f $(libexecdir); \
+               $(INSTALL_BIN) $$f $(libexecdir); \
+               if test -f $(libexecdir)/-$$f; then \
+                       echo $(RM) -f $(libexecdir)/-$$f; \
+                       $(RM) -f $(libexecdir)/-$$f; \
                fi; \
        done
 
 clean: 
-       -rm -rf *.o *pure_* core $(PROGS)
+       -rm -rf *.o *pure_* core $(LIBPROGS)
 
 distclean:     clean
        -rm -f Makefile