mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-26 20:12:44 +00:00
Makefile.inc1: Automatically generate _LIBCOMPATS and list-old-* libcompats
Reviewed by: brooks, jhb Differential Revision: https://reviews.freebsd.org/D41180
This commit is contained in:
parent
eafd028327
commit
264594efbe
@ -857,9 +857,12 @@ XCFLAGS+= --sysroot=${WORLDTMP}
|
||||
XCFLAGS+= ${BFLAGS}
|
||||
.endif
|
||||
|
||||
.if ${MK_LIB32} == "yes"
|
||||
_LIBCOMPATS+= 32
|
||||
.include "share/mk/bsd.compat.pre.mk"
|
||||
.for LIBCOMPAT in ${_ALL_LIBCOMPATS}
|
||||
.if ${MK_LIB${LIBCOMPAT}} == "yes"
|
||||
_LIBCOMPATS+= ${LIBCOMPAT}
|
||||
.endif
|
||||
.endfor
|
||||
.include "Makefile.libcompat"
|
||||
|
||||
# META_MODE normally ignores host file changes since every build updates
|
||||
@ -3255,8 +3258,9 @@ list-old-files: .PHONY
|
||||
@cd ${.CURDIR}; \
|
||||
${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
|
||||
-V "OLD_FILES:ts\n" -V "OLD_FILES:Musr/share/*.gz:R:ts\n" \
|
||||
-V "OLD_FILES:Mlib/*.so.*:S,^lib,usr/lib32,:ts\n" \
|
||||
-V "OLD_FILES:Musr/lib/*:S,^usr/lib,usr/lib32,:ts\n" | sort
|
||||
${_ALL_libcompats:@v@-V "OLD_FILES:Mlib/*.so.*:S,^lib,usr/lib$v,:ts\n"@} \
|
||||
${_ALL_libcompats:@v@-V "OLD_FILES:Musr/lib/*:S,^usr/lib,usr/lib$v,:ts\n"@} | \
|
||||
sort
|
||||
|
||||
delete-old-files: .PHONY
|
||||
@echo ">>> Removing old files (only deletes safe to delete libs)"
|
||||
@ -3321,9 +3325,10 @@ list-old-libs: .PHONY
|
||||
@cd ${.CURDIR}; \
|
||||
${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
|
||||
-V "OLD_LIBS:ts\n" -V "MOVED_LIBS:ts\n" \
|
||||
-V "OLD_LIBS:Mlib/*:S,^lib,usr/lib32,:ts\n" \
|
||||
-V "OLD_LIBS:Musr/lib/*:S,^usr/lib,usr/lib32,:ts\n" \
|
||||
-V "OLD_LIBS:Mlib/casper/*:S,^lib/casper,usr/lib32,:ts\n" | sort
|
||||
${_ALL_libcompats:@v@-V "OLD_LIBS:Mlib/*:S,^lib,usr/lib$v,:ts\n"@} \
|
||||
${_ALL_libcompats:@v@-V "OLD_LIBS:Musr/lib/*:S,^usr/lib,usr/lib$v,:ts\n"@} | \
|
||||
${_ALL_libcompats:@v@-V "OLD_LIBS:Mlib/casper/*:S,^lib/casper,usr/lib$v,:ts\n"@} | \
|
||||
sort
|
||||
|
||||
delete-old-libs: .PHONY
|
||||
@echo ">>> Removing old libraries"
|
||||
|
Loading…
Reference in New Issue
Block a user