Mercurial > vim
annotate src/tee/Makefile @ 22777:a707e11443ee
Added tag v8.2.1936 for changeset 0583f3e2c12ee2714a91ea900b1ad77c148bf963
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 01 Nov 2020 17:45:04 +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 |