1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
/*
A B O U T . C
*/
#include "icmake.h"
void about()
{
copyright("Make Utility", version, release);
error("%s%s",
"ICMAKE consists of a set of five programs. Together, they can\n"
"be used for managing program development comparable to, e.g.,\n"
"the UNIX make facility, or as a SHELL-script language.\n"
"\n"
"Icmake was developed using the C programming language by "
"Karel Kubat\n"
"and Frank Brokken.\n"
"\n"
"ICMAKE is available for several UNIX-platforms. MS-DOS is not\n"
"directly supported anymore\n"
"\n",
"ICMAKE can be obtained by anonymous ftp at:\n"
" http://icmake/sourceforge.net\n"
"Also, ICMAKE is part of the Debian distribution\n"
"\n"
"Questions, remarks, etc. about ICMAKE can be sent to:\n"
"\n"
" Frank B. Brokken,\n"
"phone: (+31) 50 363 9281\n"
"e-mail: f.b.brokken@rug.nl\n"
"surface mail: Center of Information Technology, "
"University of Groningen\n"
" P.O. Box 11044, 9700 CA Groningen, "
"the Netherlands");
}
|