summaryrefslogtreecommitdiff
path: root/dmake/winnt/borland/ruletab.c
diff options
context:
space:
mode:
Diffstat (limited to 'dmake/winnt/borland/ruletab.c')
-rw-r--r--dmake/winnt/borland/ruletab.c44
1 files changed, 0 insertions, 44 deletions
diff --git a/dmake/winnt/borland/ruletab.c b/dmake/winnt/borland/ruletab.c
deleted file mode 100644
index 855f05515e5c..000000000000
--- a/dmake/winnt/borland/ruletab.c
+++ /dev/null
@@ -1,44 +0,0 @@
-/* RCS $Id: ruletab.c,v 1.3 2006-06-29 11:32:41 ihi 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 := 32766",
- "MAXPROCESSLIMIT := 4",
- ".IMPORT .IGNORE: DMAKEROOT",
- ".MAKEFILES : makefile.mk makefile",
- ".SOURCE : .NULL",
-#include "startup.h"
- (char *)NULL };
-
-char **Rule_tab = _rules; /* for sundry reasons in Get_environment() */
-