9152e1c5a7
The tested targets are the followgin ones: * tools * distribution * sets * release The remaining NetBSD targets have not been disabled nor tested *at all*. Try them at your own risk, they may reboot the earth. For all compliant Makefiles, objects and generated files are put in MAKEOBJDIR, which means you can now keep objects between two branch switching. Same for DESTDIR, please refer to build.sh options. Regarding new or modifications of Makefiles a few things: * Read share/mk/bsd.README * If you add a subdirectory, add a Makefile in it, and have it called by the parent through the SUBDIR variable. * Do not add arbitrary inclusion which crosses to another branch of the hierarchy; If you can't do without it, put a comment on why. If possible, do not use inclusion at all. * Use as much as possible the infrastructure, it is here to make life easier, do not fight it. Sets and package are now used to track files. We have one set called "minix", composed of one package called "minix-sys" |
||
---|---|---|
.. | ||
crc.c | ||
file.c | ||
file.h | ||
ftp.1 | ||
ftp.c | ||
ftp.h | ||
local.c | ||
local.h | ||
Makefile | ||
net.c | ||
net.h | ||
other.c | ||
other.h | ||
README | ||
xfer.c | ||
xfer.h |
ftp101 --- An FTP client program for Minix 2.0 written by Michael Temari <Michael@TemWare.Com> release 1.01a 2006-06-07 Full download: <a href="/pub/contrib/ftp101.tar.Z">ftp101.tar.Z</a> FTP is the File Transfer Protocol client that allows you to connect to a remote FTP server. This version should work equally well with Minix 2 and Minix 3. Release 1.01a 2006-06-07: minor documentation edits Release 1.01 2005-02-07: minor bug fix Release 1.00 2003-12-14: added "ver" command to display current version and an ftp(1) man page. Installation: unpack the tarball, it will create an ftp101 directory. Although this is a replacement for the ftp client provided in the Minix 2.0.0 and later distributions, it is suggested you unpack and compile in the /usr/local/src directory. zcat < ftp101.tar.Z | tar xvfp - Invoking make -n will show you what the Makefile will do. make (or make ftp) compiles a new ftp binary, leaving it in the source directory. make install compiles the binary and installs it in /usr/bin. make installman installs the man page in /usr/local/man/man1. The directory must exist. Note: there is a bug in the version of the ftp client distributed with Minix 2.0.2 and 2.0.3 that causes a \r (0xd) character to be appended to file names in the destination directory when files are downloaded in binary mode using the mget command. The bug was corrected in a release prior to 1.00. Notes by ASW revised 2006-06-07