From: Roland McGrath Date: Mon, 24 Oct 1994 22:57:07 +0000 (+0000) Subject: (main): Move checks .IGNORE, .SILENT, .POSIX to snap_deps. X-Git-Tag: 3.71.5~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=07f09cfd88df1835804ff87171a264d3b13a943c;p=platform%2Fupstream%2Fmake.git (main): Move checks .IGNORE, .SILENT, .POSIX to snap_deps. --- diff --git a/main.c b/main.c index c3fe90d..9c17a34 100644 --- a/main.c +++ b/main.c @@ -785,17 +785,8 @@ main (argc, argv, envp) define_makeflags (1, 0); - f = lookup_file (".IGNORE"); - ignore_errors_flag |= f != 0 && f->is_target; - - f = lookup_file (".SILENT"); - silent_flag |= f != 0 && f->is_target; - - f = lookup_file (".POSIX"); - posix_pedantic = f != 0 && f->is_target; - - /* Make each `struct dep' point at the - `struct file' for the file depended on. */ + /* Make each `struct dep' point at the `struct file' for the file + depended on. Also do magic for special targets. */ snap_deps ();