From 6a2ad87c90c48c20eb9062a119541e547e5a097c Mon Sep 17 00:00:00 2001 From: Richard Cornwell Date: Tue, 19 Mar 2019 10:31:02 -0400 Subject: [PATCH] SCP: Updated makefile to include NETWORK_USEFUL to KA and KI sims. --- makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/makefile b/makefile index f120e66..874b3c5 100644 --- a/makefile +++ b/makefile @@ -110,6 +110,11 @@ endif # building the KA10 needs video support ifneq (,$(findstring ka10,$(MAKECMDGOALS))) VIDEO_USEFUL = true + NETWORK_USEFUL = true +endif +# building the KI10 needs video support +ifneq (,$(findstring ki10,$(MAKECMDGOALS))) + NETWORK_USEFUL = true endif # building the pdp11, pdp10, or any vax simulator could use networking support ifneq (,$(or $(findstring pdp11,$(MAKECMDGOALS)),$(findstring pdp10,$(MAKECMDGOALS)),$(findstring vax,$(MAKECMDGOALS)),$(findstring all,$(MAKECMDGOALS))))