Deleted Added
full compact
main.c (230392) main.c (243831)
1/*-
2 * Copyright (c) 1988, 1989, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1989 by Berkeley Softworks
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.

--- 32 unchanged lines hidden (view full) ---

41#ifndef lint
42#if 0
43static char copyright[] =
44"@(#) Copyright (c) 1988, 1989, 1990, 1993\n\
45 The Regents of the University of California. All rights reserved.\n";
46#endif
47#endif /* not lint */
48#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1988, 1989, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1989 by Berkeley Softworks
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.

--- 32 unchanged lines hidden (view full) ---

41#ifndef lint
42#if 0
43static char copyright[] =
44"@(#) Copyright (c) 1988, 1989, 1990, 1993\n\
45 The Regents of the University of California. All rights reserved.\n";
46#endif
47#endif /* not lint */
48#include <sys/cdefs.h>
49__FBSDID("$FreeBSD: head/usr.bin/make/main.c 230392 2012-01-20 18:55:56Z rmh $");
49__FBSDID("$FreeBSD: head/usr.bin/make/main.c 243831 2012-12-03 19:27:31Z jkim $");
50
51/*
52 * main.c
53 * The main file for this entire program. Exit routines etc
54 * reside here.
55 *
56 * Utility functions defined in this file:
57 * Main_ParseArgLine

--- 913 unchanged lines hidden (view full) ---

971 }
972
973 /*
974 * Set machine_cpu to the minimum supported CPU revision based
975 * on the target architecture, if not already set.
976 */
977 if ((machine_cpu = getenv("MACHINE_CPU")) == NULL) {
978 if (!strcmp(machine_arch, "i386"))
50
51/*
52 * main.c
53 * The main file for this entire program. Exit routines etc
54 * reside here.
55 *
56 * Utility functions defined in this file:
57 * Main_ParseArgLine

--- 913 unchanged lines hidden (view full) ---

971 }
972
973 /*
974 * Set machine_cpu to the minimum supported CPU revision based
975 * on the target architecture, if not already set.
976 */
977 if ((machine_cpu = getenv("MACHINE_CPU")) == NULL) {
978 if (!strcmp(machine_arch, "i386"))
979 machine_cpu = "i386";
979 machine_cpu = "i486";
980 else
981 machine_cpu = "unknown";
982 }
983
984 /*
985 * Initialize the parsing, directory and variable modules to prepare
986 * for the reading of inclusion paths and variable settings on the
987 * command line

--- 352 unchanged lines hidden ---
980 else
981 machine_cpu = "unknown";
982 }
983
984 /*
985 * Initialize the parsing, directory and variable modules to prepare
986 * for the reading of inclusion paths and variable settings on the
987 * command line

--- 352 unchanged lines hidden ---