makefile: simplify the selection of simulators that can use network components
This commit is contained in:
parent
84c713b494
commit
7ad62c5ee6
1 changed files with 2 additions and 6 deletions
8
makefile
8
makefile
|
@ -126,16 +126,12 @@ ifneq (3,${SIM_MAJOR})
|
||||||
VIDEO_USEFUL = true
|
VIDEO_USEFUL = true
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
# building the KA10, KI10, KL10 or KS10 networking can be used.
|
|
||||||
ifneq (,$(or $(findstring pdp10-ka,${MAKECMDGOALS}),$(findstring pdp10-ki,${MAKECMDGOALS},$(findstring pdp10-kl,${MAKECMDGOALS}))))
|
|
||||||
NETWORK_USEFUL = true
|
|
||||||
endif
|
|
||||||
# building the PDP-7 needs video support
|
# building the PDP-7 needs video support
|
||||||
ifneq (,$(findstring pdp7,${MAKECMDGOALS}))
|
ifneq (,$(findstring pdp7,${MAKECMDGOALS}))
|
||||||
VIDEO_USEFUL = true
|
VIDEO_USEFUL = true
|
||||||
endif
|
endif
|
||||||
# building the pdp11, pdp10, or any vax simulator could use networking support
|
# building the pdp11, any pdp10, any 3b2, or any vax simulator could use networking support
|
||||||
ifneq (,$(or $(findstring pdp11,${MAKECMDGOALS}),$(findstring pdp10,${MAKECMDGOALS}),$(findstring vax,${MAKECMDGOALS}),$(findstring infoserver,${MAKECMDGOALS}),$(findstring 3b2,${MAKECMDGOALS})$(findstring all,${MAKECMDGOALS})))
|
ifneq (,$(findstring pdp11,${MAKECMDGOALS})$(findstring pdp10,${MAKECMDGOALS})$(findstring vax,${MAKECMDGOALS})$(findstring infoserver,${MAKECMDGOALS})$(findstring 3b2,${MAKECMDGOALS})$(findstring all,${MAKECMDGOALS}))
|
||||||
NETWORK_USEFUL = true
|
NETWORK_USEFUL = true
|
||||||
ifneq (,$(findstring all,${MAKECMDGOALS}))
|
ifneq (,$(findstring all,${MAKECMDGOALS}))
|
||||||
BUILD_MULTIPLE = s
|
BUILD_MULTIPLE = s
|
||||||
|
|
Loading…
Add table
Reference in a new issue