summaryrefslogtreecommitdiffstats
path: root/private/ole32/olethunk/ole16/utest/basic/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'private/ole32/olethunk/ole16/utest/basic/makefile')
-rw-r--r--private/ole32/olethunk/ole16/utest/basic/makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/private/ole32/olethunk/ole16/utest/basic/makefile b/private/ole32/olethunk/ole16/utest/basic/makefile
new file mode 100644
index 000000000..f3ba09925
--- /dev/null
+++ b/private/ole32/olethunk/ole16/utest/basic/makefile
@@ -0,0 +1,35 @@
+#
+# Copyright (c) 1991, Microsoft Corporation
+#
+# History:
+#
+# 24-Feb-1994 DrewB
+#
+
+!IFDEF USEBUILD
+
+# If using BUILD.EXE, edit .\sources. if you want to add a new source
+# file to this component. This file merely indirects to the real make file
+# that is shared by all the components of NT OS/2.
+
+!INCLUDE $(NTMAKEENV)\makefile.def
+
+!ELSE
+
+default: copy_bin
+
+TARGET = base16.exe
+CXXFILES = .\base16.cxx
+QUICKWINDOWS = 1
+LIBS = $(LIBS) \
+ ..\..\compobj\$(OBJDIR)\compobj.lib\
+ ..\..\storage\$(OBJDIR)\storage.lib
+
+!include ..\..\makefile.inc
+
+copy_bin: all
+ binplace $(OBJDIR)\base16.exe
+
+base16.obj: base16.cxx
+
+!ENDIF