sync master with lastest vba changes
[ooovba.git] / dmake / win95 / microsft / ruletab.c
blobaa3528261e6dd569e2e8dd0bdc7aae8ec2124c48
1 /* RCS $Id: ruletab.c,v 1.5 2008-03-05 18:40:54 kz 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 #include "extern.h"
34 #if !defined(MAXIMUM_WAIT_OBJECTS)
35 #define MAXIMUM_WAIT_OBJECTS 1
36 #endif
38 /* To stringify the result of the expansion of a macro argument
39 * use two levels of macros. */
40 #define dmstr2(s) dmstr1(s)
41 #define dmstr1(s) #s
43 static char *_rules[] = {
44 "MAXLINELENGTH := 32766",
45 "MAXPROCESSLIMIT := " dmstr2(MAXIMUM_WAIT_OBJECTS) ,
46 ".IMPORT .IGNORE: DMAKEROOT",
47 ".MAKEFILES : makefile.mk makefile",
48 ".SOURCE : .NULL",
49 #include "startup.h"
50 #if __MINGW32__
51 # include "dmakeroot.h"
52 #endif
53 (char *)NULL };
55 char **Rule_tab = _rules; /* for sundry reasons in Get_environment() */