1 /* $RCSfile: ruletab.c,v $
3 -- last change: $Author: ihi $ $Date: 2007-10-15 15:53:13 $
6 -- Default initial configuration of dmake.
9 -- Define here the initial set of rules that are defined before
10 -- dmake performs any processing.
13 -- Dennis Vadura, dvadura@dmake.wticorp.com
16 -- http://dmake.wticorp.com/
19 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
21 -- This program is NOT free software; you can redistribute it and/or
22 -- modify it under the terms of the Software License Agreement Provided
23 -- in the file <distribution-root>/readme/license.txt.
26 -- Use cvs log to obtain detailed change logs.
29 /* These are control macros for dmake that MUST be defined at some point
30 * if they are NOT dmake will not work! These are default definitions. They
31 * may be overridden inside the .STARTUP makefile, they are here
32 * strictly so that dmake can parse the STARTUP makefile */
34 static char *_rules
[] = {
35 "MAXPROCESSLIMIT := 64",
36 "MAXLINELENGTH := 32766",
37 #include "dmakeroot.h"
38 ".IMPORT .IGNORE: DMAKEROOT",
39 ".MAKEFILES : makefile.mk Makefile makefile",
44 char **Rule_tab
= _rules
; /* for sundry reasons in Get_environment() */