dont attach, start own instance as otherwise it might be blocked via/proc/sys/kernel...
[LibreOffice.git] / dmake / unix / ruletab.c
blobd815a4f15d185e1134279340a9951159f66a5641
1 /* $RCSfile: ruletab.c,v $
2 -- $Revision: 1.9 $
3 -- last change: $Author: ihi $ $Date: 2007-10-15 15:53:13 $
4 --
5 -- SYNOPSIS
6 -- Default initial configuration of dmake.
7 --
8 -- DESCRIPTION
9 -- Define here the initial set of rules that are defined before
10 -- dmake performs any processing.
12 -- AUTHOR
13 -- Dennis Vadura, dvadura@dmake.wticorp.com
15 -- WWW
16 -- http://dmake.wticorp.com/
18 -- COPYRIGHT
19 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
21 -- This program is NOT free software; you can redistribute it and/or
22 -- modify it under the terms of the Software License Agreement Provided
23 -- in the file <distribution-root>/readme/license.txt.
25 -- LOG
26 -- Use cvs log to obtain detailed change logs.
29 /* These are control macros for dmake that MUST be defined at some point
30 * if they are NOT dmake will not work! These are default definitions. They
31 * may be overridden inside the .STARTUP makefile, they are here
32 * strictly so that dmake can parse the STARTUP makefile */
34 static char *_rules[] = {
35 "MAXPROCESSLIMIT := 64",
36 "MAXLINELENGTH := 32766",
37 #include "dmakeroot.h"
38 ".IMPORT .IGNORE: DMAKEROOT",
39 ".MAKEFILES : makefile.mk Makefile makefile",
40 ".SOURCE : .NULL",
41 #include "startup.h"
42 0 };
44 char **Rule_tab = _rules; /* for sundry reasons in Get_environment() */