Add visual mode and code revamp, add dd, G, gg motion
This commit is contained in:
parent
8573bc1c5c
commit
86dce61030
2 changed files with 1215 additions and 3 deletions
5
Makefile
5
Makefile
|
@ -8,11 +8,10 @@ BINDIR = $(PREFIX)/bin
|
|||
|
||||
CFLAGS = -Os -march=native -mtune=native -pipe -s -flto -std=c99 -pedantic -Wall -D_DEFAULT_SOURCE
|
||||
|
||||
SRC != find src -name *.c
|
||||
INCLUDE = include
|
||||
SRC = vip.c
|
||||
|
||||
$(TARGET): $(SRC) config.h
|
||||
$(CC) $(SRC) -o $@ $(CFLAGS) -I$(INCLUDE) -I.
|
||||
$(CC) $(SRC) -o $@ $(CFLAGS)
|
||||
|
||||
dist:
|
||||
mkdir -p $(TARGET)-$(VERSION)
|
||||
|
|
Loading…
Reference in a new issue