summaryrefslogtreecommitdiff
path: root/crypto/kerberosIV/appl/ftp/Makefile.in
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-12-10 21:00:36 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-12-10 21:00:36 +0000
commit0a97781cd0be0d0d6d2f7f8d1d00b9c077360949 (patch)
tree00689293591878ceb0603e0bf122ecef1216c4f2 /crypto/kerberosIV/appl/ftp/Makefile.in
parent7a7ff9f80d33b1e3d60068aecda75a282e836b81 (diff)
Notes
Diffstat (limited to 'crypto/kerberosIV/appl/ftp/Makefile.in')
-rw-r--r--crypto/kerberosIV/appl/ftp/Makefile.in44
1 files changed, 0 insertions, 44 deletions
diff --git a/crypto/kerberosIV/appl/ftp/Makefile.in b/crypto/kerberosIV/appl/ftp/Makefile.in
deleted file mode 100644
index 68546abfc3b0..000000000000
--- a/crypto/kerberosIV/appl/ftp/Makefile.in
+++ /dev/null
@@ -1,44 +0,0 @@
-# $Id: Makefile.in,v 1.12 1999/03/10 19:01:11 joda Exp $
-
-srcdir = @srcdir@
-top_srcdir = @top_srcdir@
-VPATH = @srcdir@
-
-SHELL = /bin/sh
-
-@SET_MAKE@
-
-CC = @CC@
-RANLIB = @RANLIB@
-DEFS = @DEFS@
-CFLAGS = @CFLAGS@ $(WFLAGS)
-WFLAGS = @WFLAGS@
-
-INSTALL = @INSTALL@
-
-prefix = @prefix@
-
-SUBDIRS=common ftp ftpd
-
-all:
- for i in $(SUBDIRS); \
- do (cd $$i && $(MAKE) $(MFLAGS) all); done
-
-install: all
- for i in $(SUBDIRS); \
- do (cd $$i && $(MAKE) $(MFLAGS) install); done
-
-uninstall:
- for i in $(SUBDIRS); \
- do (cd $$i && $(MAKE) $(MFLAGS) uninstall); done
-
-clean cleandir:
- for i in $(SUBDIRS); \
- do (cd $$i && $(MAKE) $(MFLAGS) clean); done
-
-distclean:
- for i in $(SUBDIRS); \
- do (cd $$i && $(MAKE) $(MFLAGS) distclean); done
- rm -f Makefile *~
-
-.PHONY: all install uninstall clean cleandir distclean