Deleted Added
full compact
main.c (120053) main.c (120718)
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 120053 2003-09-14 12:31:33Z ru $");
49__FBSDID("$FreeBSD: head/usr.bin/make/main.c 120718 2003-10-03 21:33:39Z ru $");
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 Takes a line of arguments, breaks them and

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

861 /* Traverse the graph, checking on all the targets */
862 outOfDate = Make_Run(targs);
863 } else {
864 /*
865 * Compat_Init will take care of creating all the targets as
866 * well as initializing the module.
867 */
868 Compat_Run(targs);
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 Takes a line of arguments, breaks them and

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

861 /* Traverse the graph, checking on all the targets */
862 outOfDate = Make_Run(targs);
863 } else {
864 /*
865 * Compat_Init will take care of creating all the targets as
866 * well as initializing the module.
867 */
868 Compat_Run(targs);
869 outOfDate = 0;
869 }
870 Lst_Destroy(targs, NOFREE);
871 }
872
873 Lst_Destroy(variables, NOFREE);
874 Lst_Destroy(makefiles, NOFREE);
875 Lst_Destroy(create, (void (*)(void *)) free);
876

--- 263 unchanged lines hidden ---
870 }
871 Lst_Destroy(targs, NOFREE);
872 }
873
874 Lst_Destroy(variables, NOFREE);
875 Lst_Destroy(makefiles, NOFREE);
876 Lst_Destroy(create, (void (*)(void *)) free);
877

--- 263 unchanged lines hidden ---