Deleted Added
full compact
sys.mk (129163) sys.mk (133369)
1# from: @(#)sys.mk 8.2 (Berkeley) 3/21/94
1# from: @(#)sys.mk 8.2 (Berkeley) 3/21/94
2# $FreeBSD: head/share/mk/sys.mk 129163 2004-05-12 22:53:52Z bde $
2# $FreeBSD: head/share/mk/sys.mk 133369 2004-08-09 10:54:05Z harti $
3
4unix ?= We run FreeBSD, not UNIX.
5.FreeBSD ?= true
6
7# If the special target .POSIX appears (without prerequisites or
8# commands) before the first noncomment line in the makefile, make shall
9# process the makefile as specified by the Posix 1003.2 specification.
10# make(1) sets the special macro %POSIX in this case (to the actual

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

52ECHO ?= true
53.if ${.MAKEFLAGS:M-s} == "-s"
54ECHODIR ?= echo
55.else
56ECHODIR ?= true
57.endif
58.endif
59
3
4unix ?= We run FreeBSD, not UNIX.
5.FreeBSD ?= true
6
7# If the special target .POSIX appears (without prerequisites or
8# commands) before the first noncomment line in the makefile, make shall
9# process the makefile as specified by the Posix 1003.2 specification.
10# make(1) sets the special macro %POSIX in this case (to the actual

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

52ECHO ?= true
53.if ${.MAKEFLAGS:M-s} == "-s"
54ECHODIR ?= echo
55.else
56ECHODIR ?= true
57.endif
58.endif
59
60.if !empty(.MAKEFLAGS:M-n) && ${.MAKEFLAGS:M-n} == "-n"
61_+_ ?=
62.else
63_+_ ?= +
64.endif
65
60.if defined(%POSIX)
61FC ?= fort77
62FFLAGS ?= -O 1
63.else
64FC ?= f77
65FFLAGS ?= -O
66.endif
67EFLAGS ?=

--- 201 unchanged lines hidden ---
66.if defined(%POSIX)
67FC ?= fort77
68FFLAGS ?= -O 1
69.else
70FC ?= f77
71FFLAGS ?= -O
72.endif
73EFLAGS ?=

--- 201 unchanged lines hidden ---