Deleted Added
full compact
parse.c (146132) parse.c (146140)
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.

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

34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)parse.c 8.3 (Berkeley) 3/19/94
39 */
40
41#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.

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

34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)parse.c 8.3 (Berkeley) 3/19/94
39 */
40
41#include <sys/cdefs.h>
42__FBSDID("$FreeBSD: head/usr.bin/make/parse.c 146132 2005-05-12 11:16:04Z harti $");
42__FBSDID("$FreeBSD: head/usr.bin/make/parse.c 146140 2005-05-12 14:16:44Z harti $");
43
44/*-
45 * parse.c --
46 * Functions to parse a makefile.
47 *
48 * Most important structures are kept in Lsts. Directories for
49 * the #include "..." function are kept in the 'parseIncPath' Lst, while
50 * those for the #include <...> are kept in the 'sysIncPath' Lst. The

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

877 break;
878 case Default:
879 gn = Targ_NewGN(".DEFAULT");
880 gn->type |= (OP_NOTMAIN|OP_TRANSFORM);
881 Lst_AtEnd(&targets, gn);
882 DEFAULT = gn;
883 break;
884 case NotParallel:
43
44/*-
45 * parse.c --
46 * Functions to parse a makefile.
47 *
48 * Most important structures are kept in Lsts. Directories for
49 * the #include "..." function are kept in the 'parseIncPath' Lst, while
50 * those for the #include <...> are kept in the 'sysIncPath' Lst. The

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

877 break;
878 case Default:
879 gn = Targ_NewGN(".DEFAULT");
880 gn->type |= (OP_NOTMAIN|OP_TRANSFORM);
881 Lst_AtEnd(&targets, gn);
882 DEFAULT = gn;
883 break;
884 case NotParallel:
885 maxJobs = 1;
885 jobLimit = 1;
886 break;
887 case SingleShell:
888 compatMake = 1;
889 break;
890 case Order:
891 predecessor = NULL;
892 break;
893 default:

--- 1623 unchanged lines hidden ---
886 break;
887 case SingleShell:
888 compatMake = 1;
889 break;
890 case Order:
891 predecessor = NULL;
892 break;
893 default:

--- 1623 unchanged lines hidden ---