blob: 524723415b320ebab9ba5dce3354dd459c9b3d17 (
plain)
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
43
44
45
|
/* RCS $Id: ruletab.c,v 1.2 2006-04-20 12:06:11 hr Exp $
--
-- SYNOPSIS
-- Default initial configuration of dmake.
--
-- DESCRIPTION
-- Define here the initial set of rules that are defined before
-- dmake performs any processing.
--
-- AUTHOR
-- Dennis Vadura, dvadura@dmake.wticorp.com
--
-- WWW
-- http://dmake.wticorp.com/
--
-- COPYRIGHT
-- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
--
-- This program is NOT free software; you can redistribute it and/or
-- modify it under the terms of the Software License Agreement Provided
-- in the file <distribution-root>/readme/license.txt.
--
-- LOG
-- Use cvs log to obtain detailed change logs.
*/
/* These are control macros for dmake that MUST be defined at some point
* if they are NOT dmake will not work! These are default definitions. They
* may be overridden inside the .STARTUP makefile, they are here
* strictly so that dmake can parse the STARTUP makefile */
#include <stdio.h>
static char *_rules[] = {
"MAXLINELENGTH := 2046",
"MAXPROCESSLIMIT := 1",
"MAXPROCESS := 1",
".IMPORT .IGNORE: DMAKEROOT",
".MAKEFILES : makefile.mk makefile",
".SOURCE : .NULL",
#include "startup.h"
(char *)NULL };
char **Rule_tab = _rules; /* for sundry reasons in Get_environment() */
|