diff options
author | gavin <gavin@FreeBSD.org> | 2011-06-19 21:50:38 +0000 |
---|---|---|
committer | gavin <gavin@FreeBSD.org> | 2011-06-19 21:50:38 +0000 |
commit | f3c935589780909d53003a34a63975a197937374 (patch) | |
tree | e45faa19f527f7da73e5ad4d4ffe56b0409e292e /contrib/tnftp/Makefile.in | |
parent | 95eeb54f1851c76cfe5b9e42279355b40ddcd603 (diff) | |
download | FreeBSD-src-f3c935589780909d53003a34a63975a197937374.zip FreeBSD-src-f3c935589780909d53003a34a63975a197937374.tar.gz |
Copy lukemftp to its new home, tnftp. I'm doing this in stages so as to
not confuse the CVS exporter.
Diffstat (limited to 'contrib/tnftp/Makefile.in')
-rw-r--r-- | contrib/tnftp/Makefile.in | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/contrib/tnftp/Makefile.in b/contrib/tnftp/Makefile.in new file mode 100644 index 0000000..3e4f298 --- /dev/null +++ b/contrib/tnftp/Makefile.in @@ -0,0 +1,33 @@ +# $Id: Makefile.in,v 1.6 1999/11/13 01:18:22 lukem Exp $ +# + +srcdir = @srcdir@ +VPATH = @srcdir@ +SHELL = /bin/sh + +@SET_MAKE@ + + +SUBDIRS = libedit libukem src + +all: ftp + +ftp: @LIBEDIT@ @LIBUKEM@ + ( cd src; ${MAKE} ) + +libedit.a: + ( cd libedit; ${MAKE} ) + +libukem.a: + ( cd libukem; ${MAKE} ) + +install clean: + @for i in ${SUBDIRS}; do \ + ( echo "$@ ===> $$i" ; cd $$i ; ${MAKE} $@ ); \ + done + +distclean: clean + @for i in ${SUBDIRS}; do \ + ( echo "$@ ===> $$i" ; cd $$i ; ${MAKE} $@ ); \ + done + rm -f Makefile config.cache config.log config.status config.h |