blob: 1a9fe50ecfad3977b7e97d3927e8fb4cf20b37ce (
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
|
# 16 bit unit tests makefile
# Copyright (c) 1994, Microsoft Corporation
#
# History:
# 29-Jun-1994 TerryRu
#
# If you add a new sub-component , make sure to add it in cleanup
# section too.
#
!INCLUDE $(NTMAKEENV)\makefile.plt
all:
!if "$(PROCESSOR_ARCHITECTURE)" == "x86"
@echo Build_Status Build 16 bit spdnd16 under NTVDM.
cd utests16\simpdnd
$(MAKE)
cd ..\..\utests16\simpsvr
@echo Build_Status Build 16 bit spsvr16 under NTVDM.
$(MAKE)
cd ..
!endif
!IF "$(BUILDMSG)" != ""
@ech ; $(BUILDMSG) ;
!ENDIF
cleanup:
!if "$(PROCESSOR_ARCHITECTURE)" == "x86"
cd utests16\simpdnd
$(MAKE) clean
cd ..\..\utests16\simpsvr
$(MAKE) clean
cd ..\..\
!endif
clean: cleanup all
|