makefile: clarified the make command goals which build the BESM6 simulator
This commit is contained in:
parent
4ecb739cf6
commit
f1f8c8550b
1 changed files with 19 additions and 16 deletions
5
makefile
5
makefile
|
@ -98,11 +98,14 @@ 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))))
|
||||
NETWORK_USEFUL = true
|
||||
ifneq (,$(findstring all,$(MAKECMDGOALS))$(word 2,$(MAKECMDGOALS)))
|
||||
ifneq (,$(findstring all,$(MAKECMDGOALS)))
|
||||
BUILD_MULTIPLE = s
|
||||
VIDEO_USEFUL = true
|
||||
BESM6_BUILD = true
|
||||
endif
|
||||
ifneq (,$(word 2,$(MAKECMDGOALS)))
|
||||
BUILD_MULTIPLE = s
|
||||
endif
|
||||
else
|
||||
ifeq ($(MAKECMDGOALS),)
|
||||
# default target is all
|
||||
|
|
Loading…
Add table
Reference in a new issue