| version 1.274, 2009/09/04 17:21:33 |
version 1.275, 2009/11/30 16:13:22 |
|
|
| # do-x11: builds and installs X11 if ${MKX11} != "no"; either |
# do-x11: builds and installs X11 if ${MKX11} != "no"; either |
| # X11R7 from src/external/mit/xorg if ${X11FLAVOUR} == "Xorg" |
# X11R7 from src/external/mit/xorg if ${X11FLAVOUR} == "Xorg" |
| # or X11R6 from src/x11 |
# or X11R6 from src/x11 |
| |
# do-extsrc: builds and installs extsrc if ${MKEXTSRC} != "no". |
| # do-obsolete: installs the obsolete sets (for the postinstall-* targets). |
# do-obsolete: installs the obsolete sets (for the postinstall-* targets). |
| # |
# |
| |
|
| Line 252 BUILDTARGETS+= do-build |
|
| Line 253 BUILDTARGETS+= do-build |
|
| .if ${MKX11} != "no" |
.if ${MKX11} != "no" |
| BUILDTARGETS+= do-x11 |
BUILDTARGETS+= do-x11 |
| .endif |
.endif |
| |
.if ${MKEXTSRC} != "no" |
| |
BUILDTARGETS+= do-extsrc |
| |
.endif |
| BUILDTARGETS+= do-obsolete |
BUILDTARGETS+= do-obsolete |
| |
|
| # |
# |
| Line 482 do-x11: .PHONY .MAKE |
|
| Line 486 do-x11: .PHONY .MAKE |
|
| @false |
@false |
| .endif |
.endif |
| |
|
| |
do-extsrc: .PHONY .MAKE |
| |
.if ${MKEXTSRC} != "no" |
| |
${MAKEDIRTARGET} extsrc build |
| |
.else |
| |
@echo "MKEXTSRC is not enabled" |
| |
@false |
| |
.endif |
| |
|
| do-obsolete: .PHONY .MAKE |
do-obsolete: .PHONY .MAKE |
| ${MAKEDIRTARGET} etc install-obsolete-lists |
${MAKEDIRTARGET} etc install-obsolete-lists |
| |
|