Mercurial > vim
annotate src/tee/Makefile @ 23124:f8cd5a5e03c4 v8.2.2108
patch 8.2.2108: Vim9: no test to check for :let error
Commit: https://github.com/vim/vim/commit/083966f671475ae1b67f746f0b3f5309a45dfd8f
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Dec 8 11:29:40 2020 +0100
patch 8.2.2108: Vim9: no test to check for :let error
Problem: Vim9: no test to check for :let error.
Solution: Add a test. Rename tests from _let_ to _var_.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 08 Dec 2020 11:30:06 +0100 |
parents | c2fbac867d9c |
children | ba9d53c7c509 |
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 | 2 |
3 CC=gcc | |
4 CFLAGS=-O2 -fno-strength-reduce | |
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)) |
21242
c2fbac867d9c
patch 8.2.1172: error messages when doing "make clean" in doc or tee
Bram Moolenaar <Bram@vim.org>
parents:
14978
diff
changeset
|
7 DEL = rm -f |
14978
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 | 12 tee.exe: tee.o |
13 $(CC) $(CFLAGS) -s -o $@ $< | |
14 | |
15 tee.o: tee.c | |
16 $(CC) $(CFLAGS) -c $< | |
17 | |
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 | 21 |