| version 1.81, 1999/01/28 15:36:48 |
version 1.82, 1999/01/29 05:42:35 |
|
|
| # This is needed for libstdc++ and gen-params. |
# This is needed for libstdc++ and gen-params. |
| includes-gnu: includes-include includes-sys |
includes-gnu: includes-include includes-sys |
| |
|
| # This little mess makes the includes and install targets |
# Descend into the domestic tree if it exists AND |
| # do the expected thing. |
# 1) the target is clean, cleandir, or obj, OR |
| |
# 2) the the target is install or includes AND NOT |
| |
# a) compiling only "exportable" code OR |
| |
# b) doing it as part of build. |
| |
|
| .if exists(domestic) && \ |
.if exists(domestic) && \ |
| (make(clean) || make(cleandir) || make(obj) || \ |
(make(clean) || make(cleandir) || make(obj) || \ |
| (!defined(_BUILD) && (make(includes) || make(install)))) |
((make(includes) || make(install)) && \ |
| |
!(defined(EXPORTABLE_SYSTEM) || defined(_BUILD)))) |
| SUBDIR+= domestic |
SUBDIR+= domestic |
| .endif |
.endif |
| |
|