From: wessels <> Date: Fri, 23 Feb 1996 12:52:43 +0000 (+0000) Subject: add ftpget X-Git-Tag: SQUID_3_0_PRE1~6430 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac26f494aec5e87f78e469712f330d653cd2f147;p=thirdparty%2Fsquid.git add ftpget --- diff --git a/src/Makefile.in b/src/Makefile.in index 1b7c7bcb32..b0253c88ed 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -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); \