]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
add ftpget
authorwessels <>
Fri, 23 Feb 1996 12:52:43 +0000 (12:52 +0000)
committerwessels <>
Fri, 23 Feb 1996 12:52:43 +0000 (12:52 +0000)
src/Makefile.in

index 1b7c7bcb3218eaa030ef0de35aeee27f9cc98682..b0253c88ed41762b57024389732e7d694326d98d 100644 (file)
@@ -1,7 +1,7 @@
 #
 #  Makefile for the Harvest Object Cache server
 #
-#  $Id: Makefile.in,v 1.2 1996/02/23 04:12:51 wessels Exp $
+#  $Id: Makefile.in,v 1.3 1996/02/23 05:52:43 wessels Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -55,7 +55,7 @@ LIBS          = -lregex -lutil $(XTRA_LIBS) $(CRYPT_LIB)
 CLIENT_LIBS    = -lutil $(XTRA_LIBS)
 
 PROGS          = cached 
-UTILS          = client dnsserver
+UTILS          = client dnsserver ftpget
 CGIPROGS       = cachemgr.cgi
 OBJS           = comm.o cache_cf.o debug.o disk.o dynamic_array.o \
                  fdstat.o filemap.o ftp.o gopher.o hash.o \
@@ -77,6 +77,9 @@ dnsserver: dnsserver.o
 cachemgr.cgi:  cachemgr.o
        $(CC) -o $@ $(LDFLAGS) cachemgr.o $(CLIENT_LIBS)
 
+ftpget: ftpget.o
+       $(CC) -o $@ $(LDFLAGS) ftpget.o $(LIBS)
+
 install: all
        @for f in $(PROGS); do \
                echo $(INSTALL_BIN) $$f $(INSTALL_BINDIR); \