mirror of https://github.com/tongzx/nt5src
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.
38 lines
746 B
38 lines
746 B
# 16 bit unit tests makefile
|
|
# Copyright (c) 1994, Microsoft Corporation
|
|
#
|
|
# History:
|
|
# 29-Jun-1994 TerryRu
|
|
# 13 July 1995 BChapman Copied into the perf16\idata directory from
|
|
# the root of the oleutest tree.
|
|
#
|
|
|
|
!INCLUDE $(NTMAKEENV)\makefile.plt
|
|
|
|
MAKE=nmake /f make16.mak
|
|
|
|
all:
|
|
!if "$(PROCESSOR_ARCHITECTURE)" == "x86"
|
|
@echo Build_Status Build 16 bit server edatas16 under NTVDM.
|
|
cd server
|
|
$(MAKE)
|
|
@echo Build_Status Build 16 bit client idatau16 under NTVDM.
|
|
cd ..\client
|
|
$(MAKE)
|
|
cd ..
|
|
!endif
|
|
!IF "$(BUILDMSG)" != ""
|
|
@ech ; $(BUILDMSG) ;
|
|
!ENDIF
|
|
|
|
cleanup:
|
|
!if "$(PROCESSOR_ARCHITECTURE)" == "x86"
|
|
cd server
|
|
$(MAKE) clean
|
|
cd ..\client
|
|
$(MAKE) clean
|
|
cd ..
|
|
!endif
|
|
|
|
clean: cleanup all
|
|
|