[BACK]Return to main.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/main.c between version 1.4 and 1.5

version 1.4, 1996/02/22 22:24:49 version 1.5, 1996/02/23 18:32:56
Line 161 
Line 161 
   
         optind = 1;     /* since we're called more than once */          optind = 1;     /* since we're called more than once */
 #ifdef REMOTE  #ifdef REMOTE
 # define OPTFLAGS "BD:I:L:PSd:ef:ij:knqrst"  # define OPTFLAGS "BD:I:L:PSd:ef:ij:km:nqrst"
 #else  #else
 # define OPTFLAGS "BD:I:PSd:ef:ij:knqrst"  # define OPTFLAGS "BD:I:PSd:ef:ij:km:nqrst"
 #endif  #endif
 rearg:  while((c = getopt(argc, argv, OPTFLAGS)) != EOF) {  rearg:  while((c = getopt(argc, argv, OPTFLAGS)) != EOF) {
                 switch(c) {                  switch(c) {
Line 274 
Line 274 
                         keepgoing = TRUE;                          keepgoing = TRUE;
                         Var_Append(MAKEFLAGS, "-k", VAR_GLOBAL);                          Var_Append(MAKEFLAGS, "-k", VAR_GLOBAL);
                         break;                          break;
                   case 'm':
                           Dir_AddDir(sysIncPath, optarg);
                           Var_Append(MAKEFLAGS, "-m", VAR_GLOBAL);
                           Var_Append(MAKEFLAGS, optarg, VAR_GLOBAL);
                           break;
                 case 'n':                  case 'n':
                         noExecute = TRUE;                          noExecute = TRUE;
                         Var_Append(MAKEFLAGS, "-n", VAR_GLOBAL);                          Var_Append(MAKEFLAGS, "-n", VAR_GLOBAL);
Line 399 
Line 404 
         char cdpath[MAXPATHLEN + 1];          char cdpath[MAXPATHLEN + 1];
         struct utsname utsname;          struct utsname utsname;
         char *machine = getenv("MACHINE");          char *machine = getenv("MACHINE");
           Lst sysMkPath;                  /* Path of sys.mk */
           char *cp = NULL, *start;
                                           /* avoid faults on read-only strings */
           static char syspath[] = _PATH_DEFSYSPATH;
   
 #ifdef RLIMIT_NOFILE  #ifdef RLIMIT_NOFILE
         /*          /*
Line 601 
Line 610 
         } else          } else
                 Var_Set(".TARGETS", "", VAR_GLOBAL);                  Var_Set(".TARGETS", "", VAR_GLOBAL);
   
   
         /*          /*
          * Read in the built-in rules first, followed by the specified makefile,           * If no user-supplied system path was given (through the -m option)
          * if it was (makefile != (char *) NULL), or the default Makefile and           * add the directories from the DEFSYSPATH (more than one may be given
          * makefile, in that order, if it wasn't.           * as dir1:...:dirn) to the system include path.
          */           */
          if (!noBuiltins && !ReadMakefile(_PATH_DEFSYSMK))          if (Lst_IsEmpty(sysIncPath)) {
                 Fatal("make: no system rules (%s).", _PATH_DEFSYSMK);                  for (start = syspath; *start != '\0'; start = cp) {
                           for (cp = start; *cp != '\0' && *cp != ':'; cp++)
                                   continue;
                           if (*cp == '\0') {
                                   Dir_AddDir(sysIncPath, start);
                           } else {
                                   *cp++ = '\0';
                                   Dir_AddDir(sysIncPath, start);
                           }
                   }
           }
   
           /*
            * Read in the built-in rules first, followed by the specified
            * makefile, if it was (makefile != (char *) NULL), or the default
            * Makefile and makefile, in that order, if it wasn't.
            */
           if (!noBuiltins) {
                   LstNode ln;
   
                   sysMkPath = Lst_Init (FALSE);
                   Dir_Expand (_PATH_DEFSYSMK, sysIncPath, sysMkPath);
                   if (Lst_IsEmpty(sysMkPath))
                           Fatal("make: no system rules (%s).", _PATH_DEFSYSMK);
                   ln = Lst_Find(sysMkPath, (ClientData)NULL, ReadMakefile);
                   if (ln != NILLNODE)
                           Fatal("make: cannot open %s.", (char *)Lst_Datum(ln));
           }
   
         if (!Lst_IsEmpty(makefiles)) {          if (!Lst_IsEmpty(makefiles)) {
                 LstNode ln;                  LstNode ln;
   
Line 745 
Line 782 
 ReadMakefile(fname)  ReadMakefile(fname)
         char *fname;            /* makefile to read */          char *fname;            /* makefile to read */
 {  {
         extern Lst parseIncPath, sysIncPath;          extern Lst parseIncPath;
         FILE *stream;          FILE *stream;
         char *name, path[MAXPATHLEN + 1];          char *name, path[MAXPATHLEN + 1];
   
Line 990 
Line 1027 
 {  {
         (void)fprintf(stderr,          (void)fprintf(stderr,
 "usage: make [-eiknqrst] [-D variable] [-d flags] [-f makefile ]\n\  "usage: make [-eiknqrst] [-D variable] [-d flags] [-f makefile ]\n\
             [-I directory] [-j max_jobs] [variable=value]\n");              [-I directory] [-j max_jobs] [-m directory] [variable=value]\n");
         exit(2);          exit(2);
 }  }
   

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5