freebsd_amp_hwpstate/share/mk/bsd.compat.mk

18 lines
324 B
Makefile

# $FreeBSD$
.if !defined(BURN_BRIDGES)
.for oldnew in \
NOMAN:NO_MAN \
NOMANCOMPRESS:NO_MANCOMPRESS \
NOOBJ:NO_OBJ
.for old in ${oldnew:C/:.*//}
.for new in ${oldnew:C/.*://}
.if defined(${old}) && !defined(${new})
.warning ${old} is deprecated in favor of ${new}
${new}= ${${old}}
.endif
.endfor
.endfor
.endfor
.endif