summaryrefslogtreecommitdiffstats
path: root/src/tee/Make_mvc.mak
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 08:50:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 08:50:31 +0000
commitaed8ce9da277f5ecffe968b324f242c41c3b752a (patch)
treed2e538394cb7a8a7c42a4aac6ccf1a8e3256999b /src/tee/Make_mvc.mak
parentInitial commit. (diff)
downloadvim-upstream.tar.xz
vim-upstream.zip
Adding upstream version 2:9.0.1378.upstream/2%9.0.1378upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--src/tee/Make_mvc.mak19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/tee/Make_mvc.mak b/src/tee/Make_mvc.mak
new file mode 100644
index 0000000..950100d
--- /dev/null
+++ b/src/tee/Make_mvc.mak
@@ -0,0 +1,19 @@
+# A very (if not the most) simplistic Makefile for MSVC
+
+SUBSYSTEM = console
+!if "$(SUBSYSTEM_VER)" != ""
+SUBSYSTEM = $(SUBSYSTEM),$(SUBSYSTEM_VER)
+!endif
+
+CC=cl
+CFLAGS=/O2 /nologo
+
+tee.exe: tee.obj
+ $(CC) $(CFLAGS) /Fo$@ $** /link /subsystem:$(SUBSYSTEM)
+
+tee.obj: tee.c
+ $(CC) $(CFLAGS) /c $**
+
+clean:
+ - del tee.obj
+ - del tee.exe