summaryrefslogtreecommitdiffstats
path: root/private/rpc/midl20/makefile
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/rpc/midl20/makefile
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/rpc/midl20/makefile')
-rw-r--r--private/rpc/midl20/makefile52
1 files changed, 52 insertions, 0 deletions
diff --git a/private/rpc/midl20/makefile b/private/rpc/midl20/makefile
new file mode 100644
index 000000000..53b6dfbe5
--- /dev/null
+++ b/private/rpc/midl20/makefile
@@ -0,0 +1,52 @@
+# --------------------------------------------------------------------
+#
+# Microsoft RPC
+# Copyright(c) Microsoft Corp., 1994
+#
+# --------------------------------------------------------------------
+# --------------------------------------------------------------------
+#
+# File : makefile.
+#
+# Title : Makefile for the MIDL 2.0 project.
+#
+# Description :
+# Since Vibhas (hail hail hail) doesn't want to support a 16bit
+# compiler, this simply copies a few headers needed by the CT folks.
+#
+# History :
+# mariogo 04-13-94 New build system.
+#
+# --------------------------------------------------------------------
+
+!ifdef NTMAKEENV
+
+all :
+ echo $(BUILDMSG)
+
+clean : all
+
+!else # NTMAKEENV
+
+!ifndef RPC
+!error - You forgot to set your build environment
+!endif
+
+ALL=1
+
+!include $(RPC)\rules.mk
+
+all :
+
+clean :
+
+clobber :
+
+depend :
+
+tree :
+ copy include\errors.hxx $(RPCDIST)\ct
+ copy include\errdb.h $(RPCDIST)\ct
+
+!endif # NTMAKEENV
+