Date: Tue, 1 Nov 94 10:55:14 EST From: peprbv AT cfa0 DOT harvard DOT edu (Bob Babcock) To: mattfi AT cogs DOT susx DOT ac DOT uk Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: Re: help Reply-To: babcock AT cfa DOT harvard DOT edu > 1) Due to lack of disk space, can i wipe the src files and directories from > djgpp ? Can i also wipe the initial .zip files ? Yes, although you should keep backups on floppy in case you decide you meed to extract something else. For example, library source files are the ultimate documentation. > Also, what do the zoneinfo files do and can i wipe any of them ? These give the rules for time zone offsets relative to gmt. You can probably wipe them. > What does compress.exe do ? Compress.exe compresses (or expands) a single file. Under unix, a compressed file gets a .Z appended to the file name. > If i download gzip will this compress the .exe files produced when i compile? No. Gzip is a replacement for compress (compress has some copyright problems). It uses one of the (pk)zip algorithms. It does not compress .exe files, or at least not in the sense that pklite, diet, lzexe, etc. do. > What do the makefile files do ? Makefiles contain rules for building an application. They are interpreted by a program called make (or dmake, ndmake, maker...). The basic idea is that make looks at the time stamps of source and object files to figure out what needs to be recompiled rather than recompiling everything.