File: about.c

package info (click to toggle)
icmake 7.18.00-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,840 kB
  • sloc: ansic: 7,784; makefile: 3,811; sh: 319; cpp: 83
file content (42 lines) | stat: -rw-r--r-- 1,443 bytes parent folder | download | duplicates (3)
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");
}