summaryrefslogtreecommitdiffstats
path: root/private/oleutest/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/oleutest/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/oleutest/makefil0')
-rw-r--r--private/oleutest/makefil036
1 files changed, 36 insertions, 0 deletions
diff --git a/private/oleutest/makefil0 b/private/oleutest/makefil0
new file mode 100644
index 000000000..1a9fe50ec
--- /dev/null
+++ b/private/oleutest/makefil0
@@ -0,0 +1,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