Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

58 lines
1.1 KiB

# 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 ..