blob: 583f876af184671201676100dccadf02f4cb4f8a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# 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
|