repo.or.cz
/
neatvi.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
led: indenting and deindenting when auto-indent buffer is empty
[neatvi.git]
/
Makefile
blob
900f2fe4056db6f9360fc9c45c9947be8e96ae48
1
CC
=
cc
2
CFLAGS
= -
Wall
-
O2
3
LDFLAGS
=
4
5
OBJS
=
vi.o ex.o lbuf.o mot.o sbuf.o ren.o
dir
.o syn.o reg.o led.o \
6
uc.o term.o rset.o regex.o cmd.o conf.o
7
8
all
:
vi
9
10
conf.o
:
conf.h
11
12
%
.o
: %
.c
13
$(
CC
) -
c
$(
CFLAGS
) $<
14
vi
: $(
OBJS
)
15
$(
CC
) -
o
$
@
$(
OBJS
) $(
LDFLAGS
)
16
clean
:
17
rm
-
f
*
.o vi