windows-nt/Source/XPSP1/NT/com/oleutest/perf16/idata/makefil0

38 lines
746 B
Plaintext
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
# 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