508ea216e1
2004/07/15 19:47:38 vq 1.3.68.1: #i30887# Remove the wrongly added LGPL/SISSL license headers.
44 lines
1.4 KiB
C
44 lines
1.4 KiB
C
/* $RCSfile: ruletab.c,v $
|
|
-- $Revision: 1.4 $
|
|
-- last change: $Author: rt $ $Date: 2004-09-08 16:09:26 $
|
|
--
|
|
-- 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 */
|
|
|
|
static char *_rules[] = {
|
|
"MAXPROCESSLIMIT := 10",
|
|
"MAXLINELENGTH := 8190",
|
|
#include "dmakeroot.h"
|
|
".IMPORT .IGNORE: DMAKEROOT SOLARVER UPD INPATH OS UPDMINOREXT",
|
|
".MAKEFILES : makefile.mk Makefile makefile",
|
|
".SOURCE : .NULL",
|
|
#include "startup.h"
|
|
0 };
|
|
|
|
char **Rule_tab = _rules; /* for sundry reasons in Get_environment() */
|