summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cpp/test/IceGrid/fileLock/Makefile.mak27
1 files changed, 27 insertions, 0 deletions
diff --git a/cpp/test/IceGrid/fileLock/Makefile.mak b/cpp/test/IceGrid/fileLock/Makefile.mak
new file mode 100644
index 00000000000..c34578e2c11
--- /dev/null
+++ b/cpp/test/IceGrid/fileLock/Makefile.mak
@@ -0,0 +1,27 @@
+# **********************************************************************
+#
+# Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
+#
+# This copy of Ice is licensed to you under the terms described in the
+# ICE_LICENSE file included in this distribution.
+#
+# **********************************************************************
+
+top_srcdir = ..\..\..
+
+!include $(top_srcdir)/config/Make.rules.mak
+
+clean::
+ del /q build.txt
+
+!if "$(OPTIMIZE)" == "yes"
+
+all::
+ @echo release > build.txt
+
+!else
+
+all::
+ @echo debug > build.txt
+
+!endif \ No newline at end of file