Merge branch 'feature' of github.com:piotr-marendowski/ccc into feature

This commit is contained in:
Night Kaly 2024-03-13 19:38:26 +00:00
commit 3a40477b0c
No known key found for this signature in database
GPG key ID: 8E829D3381CFEBBE
4 changed files with 9 additions and 11 deletions

View file

@ -9,8 +9,6 @@ SRC = ccc.c util.c file.c
LDFLAGS = $(shell pkg-config --libs ncurses)
CFLAGS = -march=native -mtune=native -O3 -pipe -O3 -s -std=c99 -W -pedantic $(shell pkg-config --cflags ncurses) -Wall -Wextra # -Werror
CC=cc
CONF = config.h
DEFCONF = config.def.h
PREFIX ?= /usr/local
BINDIR = $(PREFIX)/bin
@ -18,13 +16,10 @@ MANDIR = $(PREFIX)/share/man/man1
.PHONY: all install uninstall clean
all: $(TARGET)
$(TARGET): $(CONF) $(SRC)
$(TARGET): $(SRC)
$(CC) $(CFLAGS) $(LDFLAGS) $(SRC) -o $@
$(CONF):
cp -v $(DEFCONF) $(CONF)
all: $(TARGET)
install: $(TARGET)
mkdir -p $(DESTDIR)$(BINDIR)
@ -40,3 +35,5 @@ uninstall:
clean:
$(RM) $(TARGET)
ccc.o: $(CONF)

6
ccc.c
View file

@ -11,10 +11,7 @@
#include "file.h"
#include "util.h"
#define ESC 0x1B /* \e or \033 */
#define PH 1 /* panel height */
#define JUMP_NUM 14 /* how long ctrl + u/d jump are */
#include "config.h"
typedef struct {
WINDOW *window;
@ -94,6 +91,7 @@ int main(int argc, char** argv)
}
ch = getch();
switch (ch) {
/* quit */
case 'q':
endwin();

View file

View file

@ -0,0 +1,3 @@
#define ESC 0x1B /* \e or \033 */
#define PH 1 /* panel height */
#define JUMP_NUM 14 /* how long ctrl + u/d jump are */