summaryrefslogtreecommitdiffstats
path: root/private/mvdm/makefil0
blob: 6b3122ce5bece373ebf1078d3124ecd0e24e1e2d (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# MVDM makefile
#
# Copyright (c) 1991, Microsoft Corporation
#
# History:
#   28-Mar-1991 Jeff Parsons (jeffpar)
#   Created.
#
#   09-Nov-1991 Sudeep Bharart (sudeepb)
#   Modified to work under SCS
#
#   If you add a new sub-component , make sure to add it in cleanup
#   section too.
#

!INCLUDE $(NTMAKEENV)\makefile.plt

SOFTPC_TREE=$(BASEDIR)\private\mvdm\softpc.new

all:
    @echo making dos mode binaries under NTVDM.
    cd inc
    $(MAKE)
    cd ..\dpmi
    $(MAKE)
    cd ..\dos\v86
    $(MAKE)
    cd ..\..\wow16
    $(MAKE)
    cd ..\vdd\samples\mscdex\tsr
    $(MAKE)
    cd ..\..\hpscan
    $(MAKE)
    cd ..\..\..\bin86
    $(MAKE)
    cd ..
!IF "$(BUILDMSG)" != ""
    @ech ; $(BUILDMSG) ;
!ENDIF

clean:
    binplace $(SOFTPC_TREE)\data\*.r?m
    binplace $(SOFTPC_TREE)\data\profile.spc
    cd inc
    $(MAKE) clean
    cd ..\dpmi
    $(MAKE) clean
    cd ..\dos\v86
    $(MAKE) clean
    cd ..\..\wow16
    $(MAKE) clean
    cd ..\vdd\samples\mscdex\tsr
    $(MAKE) clean
    cd ..\..\hpscan
    $(MAKE) clean
    cd ..\..\..\bin86
    $(MAKE) clean
    cd ..