Ignore:
Timestamp:
Dec 17, 2004, 4:37:43 AM (21 years ago)
Author:
bird
Message:

fixing / libc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gmake/default.c

    r53 r192  
    3838
    3939static char default_suffixes[]
     40#ifndef CONFIG_NO_DEFAULT_SUFFIXES
    4041#ifdef VMS
    4142  = ".exe .olb .ln .obj .c .cxx .cc .pas .p .for .f .r .y .l .mar \
     
    5152.w .ch .web .sh .elc .el";
    5253#endif
     54#else  /* CONFIG_NO_DEFAULT_SUFFIXES */
     55 = "";
     56#endif /* CONFIG_NO_DEFAULT_SUFFIXES */
    5357
    5458static struct pspec default_pattern_rules[] =
    5559  {
     60#ifndef CONFIG_NO_DEFAULT_PATTERN_RULES
    5661    { "(%)", "%",
    5762        "$(AR) $(ARFLAGS) $@ $<" },
     
    7277    { "%.tex", "%.w %.ch",
    7378        "$(CWEAVE) $^ $@" },
    74 
     79#endif /* !CONFIG_NO_DEFAULT_PATTERN_RULES */
    7580    { 0, 0, 0 }
    7681  };
     
    7883static struct pspec default_terminal_rules[] =
    7984  {
     85#ifndef CONFIG_NO_DEFAULT_TERMINAL_RULES
    8086#ifdef VMS
    8187    /* RCS.  */
     
    106112        "$(GET) $(GFLAGS) $(SCCS_OUTPUT_OPTION) $<" },
    107113#endif /* !VMS */
     114#endif /* !CONFIG_NO_DEFAULT_TERMINAL_RULES */
    108115    { 0, 0, 0 }
    109116  };
     
    111118static char *default_suffix_rules[] =
    112119  {
     120#ifndef CONFIG_NO_DEFAULT_SUFFIX_RULES
    113121#ifdef VMS
    114122    ".obj.exe",
     
    300308
    301309#endif /* !VMS */
    302 
     310#endif /* !CONFIG_NO_DEFAULT_SUFFIX_RULES */
    303311    0, 0,
    304312  };
     
    306314static char *default_variables[] =
    307315  {
     316#ifndef CONFIG_NO_DEFAULT_VARIABLES
    308317#ifdef VMS
    309318#ifdef __ALPHA
     
    512521
    513522#endif /* !VMS */
     523#endif /* !CONFIG_NO_DEFAULT_VARIABLES */
    514524    0, 0
    515525  };
Note: See TracChangeset for help on using the changeset viewer.