windows-nt/Source/XPSP1/NT/com/oleutest/perf16/idata/makefil0
2020-09-26 16:20:57 +08:00

38 lines
746 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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