2007-10-15 09:45:20 -05:00
|
|
|
/* RCS $Id: ruletab.c,v 1.4 2007-10-15 15:45:20 ihi Exp $
|
2000-09-22 09:33:37 -05:00
|
|
|
--
|
|
|
|
-- 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 */
|
|
|
|
/*
|
|
|
|
* For OS/2 these are close to the Unix definitions in terms of limits.
|
|
|
|
* We dont need the two different cases of Makefile, so only keep the
|
|
|
|
* pretty one.
|
|
|
|
*/
|
|
|
|
static char *_rules[] = {
|
2007-09-20 08:34:28 -05:00
|
|
|
"MAXLINELENGTH := 8190",
|
2000-09-22 09:33:37 -05:00
|
|
|
"MAXPROCESSLIMIT := 16",
|
2007-09-20 08:34:28 -05:00
|
|
|
#include "dmakeroot.h"
|
2006-04-20 06:08:38 -05:00
|
|
|
".IMPORT .IGNORE: DMAKEROOT"
|
2000-09-22 09:33:37 -05:00
|
|
|
".MAKEFILES : makefile.mk Makefile",
|
|
|
|
".SOURCE : .NULL",
|
|
|
|
#include "startup.h"
|
|
|
|
0 };
|
|
|
|
|
|
|
|
char **Rule_tab = _rules; /* for sundry reasons in Get_environment() */
|
|
|
|
|