repo.or.cz
/
vim_extended.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'feat/tagfunc'
[vim_extended.git]
/
src
/
tee
/
Makefile
blob
951a1cc3631051448bdf8991ef62b66ed42ffce1
1
# A very (if not the most) simplistic Makefile for OS/2
2
3
CC
=
gcc
4
CFLAGS
=-
O2
-
fno-strength-reduce
5
6
tee.exe
:
tee.o
7
$(
CC
) $(
CFLAGS
) -
s
-
o
$
@
$<
8
9
tee.o
:
tee.c
10
$(
CC
) $(
CFLAGS
) -
c
$<
11
12
clean
:
13
-
del tee.o
14
-
del tee.exe
15