You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
403 B
23 lines
403 B
#
|
|
# Copyright (c) 1991, Microsoft Corporation
|
|
#
|
|
# History:
|
|
#
|
|
# 28-Sept-1994 TerryRu
|
|
|
|
all:
|
|
!if "$(PROCESSOR_ARCHITECTURE)" == "x86"
|
|
@echo making dos mode binaries under NTVDM.
|
|
cd ..
|
|
$(MAKE) "OPST=dayt" /f win16.mk
|
|
cd $(MAKEDIR)
|
|
!endif
|
|
|
|
|
|
clean:
|
|
!if "$(PROCESSOR_ARCHITECTURE)" == "x86"
|
|
cd ..
|
|
$(MAKE) "OPST=dayt" /f win16.mk clean
|
|
cd $(MAKEDIR)
|
|
!endif
|
|
|