Mercurial > vim
annotate src/tee/Makefile @ 16654:7d54a66c95d7 v8.1.1329
patch 8.1.1329: plans for popup window support are spread out
commit https://github.com/vim/vim/commit/957f85d54ebd5a3bd0d930de9603190f0876f977
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun May 12 21:43:48 2019 +0200
patch 8.1.1329: plans for popup window support are spread out
Problem: Plans for popup window support are spread out.
Solution: Add a first version of the popup window help.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 12 May 2019 21:45:05 +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 |