| version 1.262, 2008/10/27 22:32:51 |
version 1.263, 2008/11/09 23:02:28 |
|
|
| # do-compat-lib-libc: builds and installs prerequisites from compat/lib/libc |
# do-compat-lib-libc: builds and installs prerequisites from compat/lib/libc |
| # if ${MKCOMPAT} != "no". |
# if ${MKCOMPAT} != "no". |
| # do-build: builds and installs the entire system. |
# do-build: builds and installs the entire system. |
| # do-x11: builds and installs X11; either |
# do-x11: builds and installs X11 if ${MKX11} != "no"; either |
| # X11R7 from src/external/mit/xorg if ${MKXORG} != "no" |
# X11R7 from src/external/mit/xorg if ${X11FLAVOUR} == "Xorg" |
| # or X11R6 from src/x11 if ${MKX11} != "no" |
# or X11R6 from src/x11 |
| # do-obsolete: installs the obsolete sets (for the postinstall-* targets). |
# do-obsolete: installs the obsolete sets (for the postinstall-* targets). |
| # |
# |
| |
|
| Line 242 BUILDTARGETS+= do-compat-lib-libc |
|
| Line 242 BUILDTARGETS+= do-compat-lib-libc |
|
| .endif |
.endif |
| BUILDTARGETS+= do-ld.so |
BUILDTARGETS+= do-ld.so |
| BUILDTARGETS+= do-build |
BUILDTARGETS+= do-build |
| .if ${MKX11} != "no" || ${MKXORG} != "no" |
.if ${MKX11} != "no" |
| BUILDTARGETS+= do-x11 |
BUILDTARGETS+= do-x11 |
| .endif |
.endif |
| BUILDTARGETS+= do-obsolete |
BUILDTARGETS+= do-obsolete |
| Line 458 do-build: .PHONY .MAKE |
|
| Line 458 do-build: .PHONY .MAKE |
|
| .endfor |
.endfor |
| |
|
| do-x11: .PHONY .MAKE |
do-x11: .PHONY .MAKE |
| .if ${MKXORG} != "no" |
.if ${MKX11} != "no" |
| |
.if ${X11FLAVOUR} == "Xorg" |
| ${MAKEDIRTARGET} external/mit/xorg build |
${MAKEDIRTARGET} external/mit/xorg build |
| .elif ${MKX11} != "no" |
.else |
| ${MAKEDIRTARGET} x11 build |
${MAKEDIRTARGET} x11 build |
| |
.endif |
| .else |
.else |
| @echo "Neither MKX11 or MKXORG is enabled" |
@echo "MKX11 is not enabled" |
| @false |
@false |
| .endif |
.endif |
| |
|