89a072d11c
The variable expansion as written will never match anything but
'amd64/.8' in OBJDIR. The original intention behind the construct
remains unclear, but "as is" it serves no other purpose but to
generate the warning. Remove it altogether.
Fixes: df90aeac24
Reviewed by: imp
Differential Revision: https://reviews.freebsd.org/D38440
25 lines
421 B
Makefile
25 lines
421 B
Makefile
# $FreeBSD$
|
|
|
|
# mptable: broken (not 64 bit clean)
|
|
# pnpinfo: crashes (not really useful anyway)
|
|
.if ${MK_ACPI} != "no"
|
|
SUBDIR+= acpi
|
|
.endif
|
|
.if ${MK_APM} != "no"
|
|
SUBDIR+= apm
|
|
.endif
|
|
.if ${MK_BHYVE} != "no"
|
|
SUBDIR+= bhyve
|
|
SUBDIR+= bhyvectl
|
|
SUBDIR+= bhyveload
|
|
.endif
|
|
SUBDIR+= boot0cfg
|
|
.if ${MK_TOOLCHAIN} != "no"
|
|
SUBDIR+= btxld
|
|
.endif
|
|
SUBDIR+= cpucontrol
|
|
SUBDIR+= lptcontrol
|
|
SUBDIR+= mptable
|
|
SUBDIR+= spkrtest
|
|
SUBDIR+= zzz
|