1 # from: @(#)sys.mk 8.2 (Berkeley) 3/21/94
2 # $FreeBSD: src/share/mk/sys.mk,v 1.45.2.6 2002/12/23 16:33:37 ru Exp $
4 unix ?
= We run DragonFly
, not UNIX.
6 # Set any local definitions first. Place this early, it needs
7 # MACHINE_CPUARCH to be defined
9 .sinclude
<local.sys.mk
>
12 # If the special target .POSIX appears (without prerequisites or
13 # commands) before the first noncomment line in the makefile, make shall
14 # process the makefile as specified by the Posix 1003.2 specification.
15 # make(1) sets the special macro %POSIX in this case (to the actual
16 # value "1003.2", for what it's worth).
18 # The rules below use this macro to distinguish between Posix-compliant
19 # and default behaviour.
22 .SUFFIXES
: .o .c .y .l .a .sh .f
24 .SUFFIXES
: .out .a .ln .o .c .
cc .
cpp .
cxx .C .m .F .f .e .r .y .l .S .s .cl .p .h .sh .no .nx
30 NXAR ?
= ${NXENV} ${AR}
37 NXRANLIB ?
= ${NXENV} ${RANLIB}
46 CFLAGS ?
= -pipe
-O
${WORLD_CCOPTLEVEL}
49 CFLAGS ?
= -pipe
-O
${WORLD_CCOPTLEVEL} ${WORLD_CFLAGS}
53 # The system cc frontend is not subject to the path, e.g. when buildworld
54 # is doing cross compiles it may still need the native compiler for things.
56 NXENV ?
= CCVER
=${HOST_CCVER} BINUTILSVER
=${HOST_BINUTILSVER} OBJFORMAT_PATH
=/ PATH
=/usr
/bin
:/bin
:/usr
/sbin
:/sbin
:/usr
/local
/bin
:/usr
/pkg
/bin
57 NXCC ?
= ${NXENV} ${CC}
58 NXCC_LINK ?
= ${NXENV} ${CC_LINK}
62 NXCXX ?
= ${NXENV} ${CXX}
63 NXCXX_LINK ?
= ${NXENV} ${CXX_LINK}
64 CXXFLAGS ?
= ${CXXINCLUDES} ${CFLAGS
:N-std
=*:N-Wnested-externs
:N-W
*-prototypes
:N-Wno-pointer-sign
:N-Wold-style-definition
:N-Wsystem-headers
}
65 .if
!defined
(SYSBUILD
) && defined
(.MAKE.BUILT.BY
) && ${.MAKE.BUILT.BY
:Mgcc47
}
66 CXXFLAGS
+= -D_GLIBCXX_USE_CXX11_ABI
=0
71 .if
${.MAKEFLAGS
:M-s
} == ""
76 .if
${.MAKEFLAGS
:M-s
} == "-s"
99 NXLD ?
= ${NXENV} ${LD}
101 NXCFLAGS ?
= ${CFLAGS
:N-mtune
*:N-mcpu
*:N-march
*:N-flto
}
102 NXCXXFLAGS ?
= ${CFLAGS
:N-mtune
*:N-mcpu
*:N-march
*:N-flto
:N-std
=*}
103 NXLDLIBS ?
= ${LDLIBS}
104 NXLDFLAGS ?
= -static
${LDFLAGS}
112 OBJCFLAGS ?
= ${OBJCINCLUDES} ${CFLAGS} -Wno-import
129 # The 'make' program is expected to define the following.
131 # MACHINE_PLATFORM platform architecture (pc64, vkernel64, etc.)
132 # MACHINE machine architecture (x86_64, etc.)
133 # MACHINE_ARCH cpu architecture (x86_64, etc.)
135 .if
!defined
(MACHINE
)
136 .error
"MACHINE was not defined by make"
138 .if
!defined
(MACHINE_ARCH
)
139 .error
"MACHINE_ARCH was not defined by make"
142 # Backwards compatibility. There was a time during 1.7 development
143 # where we tried to rename MACHINE. This failed and was reverted,
144 # and MACHINE_PLATFORM was added to make the distinction. These shims
145 # prevent buildworld from breaking.
147 .if
!defined
(MACHINE_PLATFORM
)
148 MACHINE_PLATFORM
!=sysctl
-n hw.platform
152 # Posix 1003.2 mandated rules
154 # Quoted directly from the Posix 1003.2 draft, only the macros
155 # $@, $< and $* have been replaced by ${.TARGET}, ${.IMPSRC}, and
158 # SINGLE SUFFIX RULES
160 ${CC} ${CFLAGS} ${LDFLAGS} -o
${.TARGET
} ${.IMPSRC
}
163 ${FC} ${FFLAGS} ${LDFLAGS} -o
${.TARGET
} ${.IMPSRC
}
166 cp
${.IMPSRC
} ${.TARGET
}
169 # DOUBLE SUFFIX RULES
172 ${CC} ${CFLAGS} -c
${.IMPSRC
}
175 ${FC} ${FFLAGS} -c
${.IMPSRC
}
178 ${YACC} ${YFLAGS} ${.IMPSRC
}
179 ${CC} ${CFLAGS} -c y.tab.c
181 mv y.tab.o
${.TARGET
}
184 ${LEX} ${LFLAGS} ${.IMPSRC
}
185 ${CC} ${CFLAGS} -c
lex.yy.c
187 mv
lex.yy.o
${.TARGET
}
190 ${YACC} ${YFLAGS} ${.IMPSRC
}
191 mv y.tab.c
${.TARGET
}
194 ${LEX} ${LFLAGS} ${.IMPSRC
}
195 mv
lex.yy.c
${.TARGET
}
198 ${CC} ${CFLAGS} -c
${.IMPSRC
}
199 ${AR} ${ARFLAGS} ${.TARGET
} ${.PREFIX
}.o
203 ${FC} ${FFLAGS} -c
${.IMPSRC
}
204 ${AR} ${ARFLAGS} ${.TARGET
} ${.PREFIX
}.o
212 cp
-p
${.IMPSRC
} ${.TARGET
}
216 ${CC} ${_
${.IMPSRC
:T
}_FLAGS
} ${CFLAGS} ${LDFLAGS} ${.IMPSRC
} ${LDLIBS} -o
${.TARGET
}
219 ${CC} ${_
${.IMPSRC
:T
}_FLAGS
} ${CFLAGS} -c
${.IMPSRC
}
222 ${CXX} ${_
${.IMPSRC
:T
}_FLAGS
} ${CXXFLAGS} ${LDFLAGS} ${.IMPSRC
} ${LDLIBS} -o
${.TARGET
}
224 .
cc.o .
cpp.o .
cxx.o .C.o
:
225 ${CXX} ${_
${.IMPSRC
:T
}_FLAGS
} ${CXXFLAGS} -c
${.IMPSRC
}
228 ${OBJC} ${_
${.IMPSRC
:T
}_FLAGS
} ${OBJCFLAGS} -c
${.IMPSRC
}
231 ${PC} ${_
${.IMPSRC
:T
}_FLAGS
} ${PFLAGS} -c
${.IMPSRC
}
234 ${FC} ${_
${.IMPSRC
:T
}_FLAGS
} ${RFLAGS} ${EFLAGS} ${FFLAGS} ${LDFLAGS} \
235 ${.IMPSRC
} ${LDLIBS} -o
${.TARGET
}
238 ${FC} ${_
${.IMPSRC
:T
}_FLAGS
} ${RFLAGS} ${EFLAGS} ${FFLAGS} -c
${.IMPSRC
}
241 ${CC} ${_
${.IMPSRC
:T
}_FLAGS
} ${CFLAGS} -c
${.IMPSRC
}
244 ${AS} ${_
${.IMPSRC
:T
}_FLAGS
} ${AFLAGS} -o
${.TARGET
} ${.IMPSRC
}
248 ${YACC} ${YFLAGS} ${.IMPSRC
}
249 ${CC} ${CFLAGS} -c y.tab.c
-o
${.TARGET
}
253 ${LEX} -t
${LFLAGS} ${.IMPSRC
} > ${.PREFIX
}.tmp.c
254 ${CC} ${CFLAGS} -c
${.PREFIX
}.tmp.c
-o
${.TARGET
}
255 rm -f
${.PREFIX
}.tmp.c
257 # .no == native object file, for helper code when cross building.
260 ${NXCC} ${_
${.IMPSRC
:T
}_FLAGS
} ${NXCFLAGS
:N-flto
} -c
${.IMPSRC
} -o
${.TARGET
}
262 .
cc.no .C.no .
cpp.no .
cxx.no
:
263 ${NXCXX} ${_
${.IMPSRC
:T
}_FLAGS
} ${NXCXXFLAGS
:N-flto
} -c
${.IMPSRC
} -o
${.TARGET
}
266 ${YACC} ${YFLAGS} ${.IMPSRC
}
267 ${NXCC} ${NXCFLAGS} -c y.tab.c
-o
${.TARGET
}
271 ${LEX} ${LFLAGS} -o
${.TARGET
}.c
${.IMPSRC
}
272 ${NXCC} ${NXCFLAGS} -c
${.TARGET
}.c
-o
${.TARGET
}
276 ${NXCC} ${_
${.IMPSRC
:T
}_FLAGS
} ${NXCFLAGS} ${NXLDFLAGS} ${.IMPSRC
} \
277 ${NXLDLIBS} -o
${.TARGET
}
281 ${YACC} ${YFLAGS} ${.IMPSRC
}
282 mv y.tab.c
${.TARGET
}
285 ${LEX} -t
${LFLAGS} ${.IMPSRC
} > ${.TARGET
}
287 .s.out .c.out .o.out
:
288 ${CC} ${_
${.IMPSRC
:T
}_FLAGS
} ${CFLAGS} ${LDFLAGS} ${.IMPSRC
} ${LDLIBS} -o
${.TARGET
}
290 .f.out .F.out .r.out .e.out
:
291 ${FC} ${_
${.IMPSRC
:T
}_FLAGS
} ${EFLAGS} ${RFLAGS} ${FFLAGS} ${LDFLAGS} \
292 ${.IMPSRC
} ${LDLIBS} -o
${.TARGET
}
297 ${YACC} ${YFLAGS} ${.IMPSRC
}
298 ${CC} ${CFLAGS} ${LDFLAGS} y.tab.c
${LDLIBS} -ly
-o
${.TARGET
}
302 ${LEX} -t
${LFLAGS} ${.IMPSRC
} > ${.PREFIX
}.tmp.c
303 ${CC} ${CFLAGS} ${LDFLAGS} ${.PREFIX
}.tmp.c
${LDLIBS} -ll
-o
${.TARGET
}
304 rm -f
${.PREFIX
}.tmp.c
308 # Include base system defaults.
309 .if exists
(/etc
/defaults
/make.conf
)
310 .
include </etc
/defaults
/make.conf
>
313 # XXX we should some how include src tree etc/defaults/make.conf too. Changes
314 # to default/make.conf only applies after installworld so might produce world
315 # that no longer can bootstrap itself.
317 # Private helper for handling alternative compilers and Makefile.inc1 tester.
318 WORLD_ALTCOMPILER?
= gcc47
320 # Include global user settings.
321 __MAKE_CONF?
=/etc
/make.conf
322 .if exists
(${__MAKE_CONF})
323 .
include "${__MAKE_CONF}"
326 # Helper for bootstrapping in makefiles.
327 .if
!defined
(WORLD_VERSION
)
328 .if defined
(.MAKE.DF.VERSION
)
329 WORLD_VERSION
= ${.MAKE.DF.VERSION
}
331 .if exists
(/usr
/include/sys
/param.h
)
332 WORLD_VERSION
!= ${AWK} '/^\#define[[:blank:]]__DragonFly_version/ {print $$3}' < /usr
/include/sys
/param.h
335 # Export it to ensure it will stay constant from initial make invoke.
336 .MAKEFLAGS
: WORLD_VERSION
=${WORLD_VERSION}
339 .
include <bsd.cpu.mk
>
341 .if exists
(/etc
/make.conf.local
)
342 .error Error
, original
/etc
/make.conf should be moved to the
/etc
/defaults
/ directory and
/etc
/make.conf.local should be renamed to
/etc
/make.conf.
343 .
include </etc
/make.conf.local
>
346 # Default executable format
347 # XXX hint for bsd.port.mk
350 # Tell bmake to expand -V VAR by default
351 .MAKE.EXPAND_VARIABLES
= yes
353 .if
!defined
(.PARSEDIR
)
354 # Not using bmake, which is aggressive about search .PATH
355 # It is sometimes necessary to curb its enthusiam with .NOPATH
356 # The following allows us to quietly ignore .NOPATH when no using bmake.