Changeset 192 for trunk/src/gmake/default.c
- Timestamp:
- Dec 17, 2004, 4:37:43 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/default.c
r53 r192 38 38 39 39 static char default_suffixes[] 40 #ifndef CONFIG_NO_DEFAULT_SUFFIXES 40 41 #ifdef VMS 41 42 = ".exe .olb .ln .obj .c .cxx .cc .pas .p .for .f .r .y .l .mar \ … … 51 52 .w .ch .web .sh .elc .el"; 52 53 #endif 54 #else /* CONFIG_NO_DEFAULT_SUFFIXES */ 55 = ""; 56 #endif /* CONFIG_NO_DEFAULT_SUFFIXES */ 53 57 54 58 static struct pspec default_pattern_rules[] = 55 59 { 60 #ifndef CONFIG_NO_DEFAULT_PATTERN_RULES 56 61 { "(%)", "%", 57 62 "$(AR) $(ARFLAGS) $@ $<" }, … … 72 77 { "%.tex", "%.w %.ch", 73 78 "$(CWEAVE) $^ $@" }, 74 79 #endif /* !CONFIG_NO_DEFAULT_PATTERN_RULES */ 75 80 { 0, 0, 0 } 76 81 }; … … 78 83 static struct pspec default_terminal_rules[] = 79 84 { 85 #ifndef CONFIG_NO_DEFAULT_TERMINAL_RULES 80 86 #ifdef VMS 81 87 /* RCS. */ … … 106 112 "$(GET) $(GFLAGS) $(SCCS_OUTPUT_OPTION) $<" }, 107 113 #endif /* !VMS */ 114 #endif /* !CONFIG_NO_DEFAULT_TERMINAL_RULES */ 108 115 { 0, 0, 0 } 109 116 }; … … 111 118 static char *default_suffix_rules[] = 112 119 { 120 #ifndef CONFIG_NO_DEFAULT_SUFFIX_RULES 113 121 #ifdef VMS 114 122 ".obj.exe", … … 300 308 301 309 #endif /* !VMS */ 302 310 #endif /* !CONFIG_NO_DEFAULT_SUFFIX_RULES */ 303 311 0, 0, 304 312 }; … … 306 314 static char *default_variables[] = 307 315 { 316 #ifndef CONFIG_NO_DEFAULT_VARIABLES 308 317 #ifdef VMS 309 318 #ifdef __ALPHA … … 512 521 513 522 #endif /* !VMS */ 523 #endif /* !CONFIG_NO_DEFAULT_VARIABLES */ 514 524 0, 0 515 525 };
Note:
See TracChangeset
for help on using the changeset viewer.