summaryrefslogtreecommitdiffstats
path: root/private/mvdm/makefil0
diff options
context:
space:
mode:
authorAdam <you@example.com>2020-05-17 05:51:50 +0200
committerAdam <you@example.com>2020-05-17 05:51:50 +0200
commite611b132f9b8abe35b362e5870b74bce94a1e58e (patch)
treea5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/mvdm/makefil0
downloadNT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip
Diffstat (limited to 'private/mvdm/makefil0')
-rw-r--r--private/mvdm/makefil058
1 files changed, 58 insertions, 0 deletions
diff --git a/private/mvdm/makefil0 b/private/mvdm/makefil0
new file mode 100644
index 000000000..6b3122ce5
--- /dev/null
+++ b/private/mvdm/makefil0
@@ -0,0 +1,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 ..