annotate src/tee/Makefile @ 19728:41a1ea967a97 v8.2.0420

patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C Commit: https://github.com/vim/vim/commit/f1ec378b014efb9897422c40369a6462163a512a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 20 19:37:47 2020 +0100 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C Problem: Vim9: cannot interrupt a loop with CTRL-C. Solution: Check for CTRL-C once in a while. Doesn't fully work yet.
author Bram Moolenaar <Bram@vim.org>
date Fri, 20 Mar 2020 19:45:03 +0100
parents d148cd1163a5
children c2fbac867d9c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14943
d95d6580d84b patch 8.1.0483: MinGW does not build tee.exe
Bram Moolenaar <Bram@vim.org>
parents: 7
diff changeset
1 # A very (if not the most) simplistic Makefile for MS-Windows and OS/2
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 CC=gcc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 CFLAGS=-O2 -fno-strength-reduce
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5
14978
d148cd1163a5 patch 8.1.0500: cleaning up in src/tee may not always work
Bram Moolenaar <Bram@vim.org>
parents: 14943
diff changeset
6 ifneq (sh.exe, $(SHELL))
d148cd1163a5 patch 8.1.0500: cleaning up in src/tee may not always work
Bram Moolenaar <Bram@vim.org>
parents: 14943
diff changeset
7 DEL = rm
d148cd1163a5 patch 8.1.0500: cleaning up in src/tee may not always work
Bram Moolenaar <Bram@vim.org>
parents: 14943
diff changeset
8 else
d148cd1163a5 patch 8.1.0500: cleaning up in src/tee may not always work
Bram Moolenaar <Bram@vim.org>
parents: 14943
diff changeset
9 DEL = del
d148cd1163a5 patch 8.1.0500: cleaning up in src/tee may not always work
Bram Moolenaar <Bram@vim.org>
parents: 14943
diff changeset
10 endif
d148cd1163a5 patch 8.1.0500: cleaning up in src/tee may not always work
Bram Moolenaar <Bram@vim.org>
parents: 14943
diff changeset
11
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 tee.exe: tee.o
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 $(CC) $(CFLAGS) -s -o $@ $<
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 tee.o: tee.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 $(CC) $(CFLAGS) -c $<
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 clean:
14978
d148cd1163a5 patch 8.1.0500: cleaning up in src/tee may not always work
Bram Moolenaar <Bram@vim.org>
parents: 14943
diff changeset
19 - $(DEL) tee.o
d148cd1163a5 patch 8.1.0500: cleaning up in src/tee may not always work
Bram Moolenaar <Bram@vim.org>
parents: 14943
diff changeset
20 - $(DEL) tee.exe
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21