From 8c01acb72fbf1b14f98938052dc632ec78f673e6 Mon Sep 17 00:00:00 2001 From: night0721 Date: Tue, 22 Oct 2024 01:13:33 +0100 Subject: [PATCH] Update Makefile --- Makefile | 13 ++++++------- config.h | 4 ++-- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 0183c52..7322bbc 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,6 @@ .POSIX: .SUFFIXES: -CC = cc VERSION = 1.0 TARGET = ccc MANPAGE = $(TARGET).1 @@ -10,9 +9,9 @@ PREFIX ?= /usr/local BINDIR = $(PREFIX)/bin MANDIR = $(PREFIX)/share/man/man1 -# Flags -LDFLAGS = $(shell pkg-config --libs ncursesw) -CFLAGS = -O3 -march=native -mtune=native -pipe -s -flto -std=c99 -pedantic -Wall -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 $(shell pkg-config --cflags ncursesw) +LDFLAGS != pkg-config --libs ncursesw +INCFLAGS != pkg-config --cflags ncursesw +CFLAGS = -O3 -march=native -mtune=native -pipe -s -flto -std=c99 -pedantic -Wall -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 $(INCFLAGS) SRC = ccc.c util.c file.c icons.c @@ -35,11 +34,11 @@ install: $(TARGET) chmod 644 $(DESTDIR)$(MANDIR)/$(MANPAGE) uninstall: - $(RM) $(DESTDIR)$(BINDIR)/$(TARGET) - $(RM) $(DESTDIR)$(MANDIR)/$(MANPAGE) + rm $(DESTDIR)$(BINDIR)/$(TARGET) + rm $(DESTDIR)$(MANDIR)/$(MANPAGE) clean: - $(RM) $(TARGET) + rm $(TARGET) all: $(TARGET) diff --git a/config.h b/config.h index 1c45bb7..cdedb99 100644 --- a/config.h +++ b/config.h @@ -19,10 +19,10 @@ In COLS: 0 will make them equal (at the center), 15 will make files bigger -15 will make preview bigger */ -#define WINDOW_OFFSET 0 +#define WINDOW_OFFSET -20 /* Options */ -#define DRAW_BORDERS true /* draw borders around windows */ +#define DRAW_BORDERS false /* draw borders around windows */ #define DRAW_PREVIEW true /* draw file preview */ #define SHOW_HIDDEN true /* show hidden files/dotfiles at startup */