home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dmake40.zip / os2 / ruletab.c < prev    next >
C/C++ Source or Header  |  1994-10-23  |  2KB  |  56 lines

  1. /* RCS      -- $Header: /u5/dvadura/src/public/dmake/src/os2/RCS/ruletab.c,v 1.1 1994/10/06 17:42:41 dvadura Exp $
  2. -- SYNOPSIS -- Default initial configuration of dmake.
  3. -- 
  4. -- DESCRIPTION
  5. --     Define here the initial set of rules that are defined before
  6. --    dmake performs any processing.
  7. --
  8. -- AUTHOR
  9. --      Dennis Vadura, dvadura@watdragon.uwaterloo.ca
  10. --      CS DEPT, University of Waterloo, Waterloo, Ont., Canada
  11. --
  12. -- COPYRIGHT
  13. --      Copyright (c) 1992,1994 by Dennis Vadura.  All rights reserved.
  14. -- 
  15. --      This program is free software; you can redistribute it and/or
  16. --      modify it under the terms of the GNU General Public License
  17. --      (version 1), as published by the Free Software Foundation, and
  18. --      found in the file 'LICENSE' included with this distribution.
  19. -- 
  20. --      This program is distributed in the hope that it will be useful,
  21. --      but WITHOUT ANY WARRANTY; without even the implied warrant of
  22. --      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23. --      GNU General Public License for more details.
  24. -- 
  25. --      You should have received a copy of the GNU General Public License
  26. --      along with this program;  if not, write to the Free Software
  27. --      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  28. --
  29. -- LOG
  30. --     $Log: ruletab.c,v $
  31.  * Revision 1.1  1994/10/06  17:42:41  dvadura
  32.  * dmake Release Version 4.0, Initial revision
  33.  *
  34. */
  35.  
  36. /* These are control macros for dmake that MUST be defined at some point
  37.  * if they are NOT dmake will not work!  These are default definitions.  They
  38.  * may be overridden inside the .STARTUP makefile, they are here
  39.  * strictly so that dmake can parse the STARTUP makefile */
  40. /*
  41.  * For OS/2 these are close to the Unix definitions in terms of limits.
  42.  * We dont need the two different cases of Makefile, so only keep the
  43.  * pretty one.
  44.  */
  45. static char *_rules[] = {
  46.     "MAXLINELENGTH := 2046",
  47.     "MAXPROCESSLIMIT := 16",
  48.     ".IMPORT .IGNORE: ROOTDIR INIT",
  49.     ".MAKEFILES : makefile.mk Makefile",
  50.     ".SOURCE    : .NULL",
  51. #include "startup.h"
  52.     0 };
  53.  
  54. char **Rule_tab = _rules; /* for sundry reasons in Get_environment() */
  55.  
  56.