7e709178b7
2007/09/16 03:57:13 vq 1.7.16.2: #i74007# Revert the part of the previous patch that lets OOODMAKEMODE always be imported from the environment. Instead move the definition of targets from the command line after the evaluation of the startup makefile. 2007/09/16 03:03:42 vq 1.7.16.1: #i74007# Always import OOODMAKEMODE from the environment. Define targets from the command line after the macros from the command line and OOODMAKEMODE from the environment are set.
44 lines
1.3 KiB
C
44 lines
1.3 KiB
C
/* $RCSfile: ruletab.c,v $
|
|
-- $Revision: 1.9 $
|
|
-- last change: $Author: ihi $ $Date: 2007-10-15 15:53:13 $
|
|
--
|
|
-- 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 := 64",
|
|
"MAXLINELENGTH := 32766",
|
|
#include "dmakeroot.h"
|
|
".IMPORT .IGNORE: DMAKEROOT",
|
|
".MAKEFILES : makefile.mk Makefile makefile",
|
|
".SOURCE : .NULL",
|
|
#include "startup.h"
|
|
0 };
|
|
|
|
char **Rule_tab = _rules; /* for sundry reasons in Get_environment() */
|