Mercurial > vim
annotate src/tee/Makefile @ 16356:1759d0ec0a6f v8.1.1183
patch 8.1.1183: typos in VisVim comments
commit https://github.com/vim/vim/commit/b49e3563b920ff6d96b88a1f658182a986b2b1ea
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Apr 17 18:31:18 2019 +0200
patch 8.1.1183: typos in VisVim comments
Problem: Typos in VisVim comments.
Solution: Correct the typos. (Christ van Willegen)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 17 Apr 2019 18:45:04 +0200 |
parents | d148cd1163a5 |
children | c2fbac867d9c |
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)) |
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 | 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 |