1 /* RCS $Id: ruletab.c,v 1.2 2006-04-20 12:05:16 hr Exp $
4 -- Default initial configuration of dmake.
7 -- Define here the initial set of rules that are defined before
8 -- dmake performs any processing.
11 -- Dennis Vadura, dvadura@dmake.wticorp.com
14 -- http://dmake.wticorp.com/
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.
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 static char *_rules
[] = {
33 "MAXLINELENGTH := 4094",
34 "MAXPROCESSLIMIT := 1",
36 ".IMPORT .IGNORE: DMAKEROOT",
37 ".MAKEFILES : makefile.mk Makefile makefile",
42 char **Rule_tab
= _rules
; /* for sundry reasons in Get_environment() */