38 lines
745 B
Plaintext
38 lines
745 B
Plaintext
|
# 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
|