Deleted Added
sdiff udiff text old ( 146140 ) new ( 146141 )
full compact
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 146141 2005-05-12 14:31:42Z harti $");
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

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

983 }
984
985 /* Traverse the graph, checking on all the targets */
986 outOfDate = Make_Run(&targs);
987 }
988 Lst_Destroy(&targs, NOFREE);
989
990 } else {
991 Var_Print(&variables, expandVars);
992 }
993
994 Lst_Destroy(&variables, free);
995 Lst_Destroy(&makefiles, free);
996 Lst_Destroy(&create, free);
997
998 /* print the graph now it's been processed if the user requested it */
999 if (DEBUG(GRAPH2))

--- 114 unchanged lines hidden ---