freebsd_amp_hwpstate/share/mk/bsd.compat.mk

38 lines
778 B
Makefile
Raw Normal View History

# $FreeBSD$
.if !defined(BURN_BRIDGES)
.for oldnew in \
2004-12-21 09:08:06 +00:00
NOATM:NO_ATM \
2004-12-21 10:16:04 +00:00
NOCRYPT:NO_CRYPT \
NODOCCOMPRESS:NO_DOCCOMPRESS \
2004-12-21 09:42:10 +00:00
NOEXTRADEPEND:NO_EXTRADEPEND \
2004-12-21 09:53:14 +00:00
NOFSCHG:NO_FSCHG \
2004-12-21 10:36:54 +00:00
NOGAMES:NO_GAMES \
2004-12-21 12:05:11 +00:00
NOHTML:NO_HTML \
2004-12-21 10:49:29 +00:00
NOINET6:NO_INET6 \
NOINFO:NO_INFO \
NOINFOCOMPRESS:NO_INFOCOMPRESS \
2004-12-21 09:51:09 +00:00
NOINSTALLLIB:NO_INSTALLLIB \
NOLIBC_R:NO_LIBC_R \
NOLIBPTHREAD:NO_LIBPTHREAD \
NOLIBTHR:NO_LIBTHR \
NOLINT:NO_LINT \
NOMAN:NO_MAN \
NOMANCOMPRESS:NO_MANCOMPRESS \
2004-12-21 09:44:43 +00:00
NOMLINKS:NO_MLINKS \
NOOBJ:NO_OBJ \
NOPIC:NO_PIC \
2004-12-21 09:43:25 +00:00
NOPROFILE:NO_PROFILE \
2004-12-21 09:59:45 +00:00
NOSHARED:NO_SHARED \
2004-12-21 09:43:25 +00:00
NOTAGS:NO_TAGS
.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