Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / dmake / os2 / ruletab.c
blobdfe6f72f63da02e071f9ade938f0418349073aa9
1 /* RCS $Id: ruletab.c,v 1.4 2007-10-15 15:45:20 ihi Exp $
2 --
3 -- SYNOPSIS
4 -- Default initial configuration of dmake.
5 --
6 -- DESCRIPTION
7 -- Define here the initial set of rules that are defined before
8 -- dmake performs any processing.
9 --
10 -- AUTHOR
11 -- Dennis Vadura, dvadura@dmake.wticorp.com
13 -- WWW
14 -- http://dmake.wticorp.com/
16 -- COPYRIGHT
17 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
19 -- This program is NOT free software; you can redistribute it and/or
20 -- modify it under the terms of the Software License Agreement Provided
21 -- in the file <distribution-root>/readme/license.txt.
23 -- LOG
24 -- Use cvs log to obtain detailed change logs.
27 /* These are control macros for dmake that MUST be defined at some point
28 * if they are NOT dmake will not work! These are default definitions. They
29 * may be overridden inside the .STARTUP makefile, they are here
30 * strictly so that dmake can parse the STARTUP makefile */
32 * For OS/2 these are close to the Unix definitions in terms of limits.
33 * We dont need the two different cases of Makefile, so only keep the
34 * pretty one.
36 static char *_rules[] = {
37 "MAXLINELENGTH := 8190",
38 "MAXPROCESSLIMIT := 16",
39 #include "dmakeroot.h"
40 ".IMPORT .IGNORE: DMAKEROOT"
41 ".MAKEFILES : makefile.mk Makefile",
42 ".SOURCE : .NULL",
43 #include "startup.h"
44 0 };
46 char **Rule_tab = _rules; /* for sundry reasons in Get_environment() */