summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorSosthène Guédon <sosthene.gued@gmail.com>2019-06-16 12:12:33 +0200
committerSosthène Guédon <sosthene.gued@gmail.com>2019-06-16 12:12:33 +0200
commite2cd442811ce3d5d602e1e3d90173af77e5041d4 (patch)
tree4def7574025a60e98d74be26713a0aea2a5b3497 /src/Makefile
parent08556c96115a5421f05b637bb29affde359ccacf (diff)
Change FOLDER to DIR
Diffstat (limited to 'src/Makefile')
-rwxr-xr-xsrc/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile b/src/Makefile
index be60014..a9467ce 100755
--- a/src/Makefile
+++ b/src/Makefile
@@ -12,9 +12,9 @@ LIBDIR = $(prefix)/share/doc/$(name)
MANDIR = $(prefix)/share/man/man1
# This is where the history file go
-HISTORY_FOLDER= .cache
+HISTORY_DIR= .cache
# This is where the config file go
-CONFIG_FOLDER= .config
+CONFIG_DIR= .config
# Change these to your liking or use `make CC=gcc` etc
#CC = cc
@@ -36,10 +36,10 @@ CFLAGS += -DDFLT_PAGER=\"less\"
CFLAGS += -DDFLT_EDITOR=\"vim\"
# Comment out to disable color support
CFLAGS += -DUSECOLORS
-# Command history file, relative to HISTORY_FOLDER directory. Comment out to disable commandline history
-CFLAGS += -DHISTORY_FILE=\"sc-iminfo\" -DHISTORY_FOLDER=\"$(HISTORY_FOLDER)\"
-# Configuration file, relative to CONFIG_FOLDER directory
-CFLAGS += -DCONFIG_FILE=\"scimrc\" -DCONFIG_FOLDER=\"$(CONFIG_FOLDER)\"
+# Command history file, relative to HISTORY_DIR directory. Comment out to disable commandline history
+CFLAGS += -DHISTORY_FILE=\"sc-iminfo\" -DHISTORY_DIR=\"$(HISTORY_DIR)\"
+# Configuration file, relative to CONFIG_DIR directory
+CFLAGS += -DCONFIG_FILE=\"scimrc\" -DCONFIG_DIR=\"$(CONFIG_DIR)\"
# Input mode history. Same as previous, but for insert mode commands
CFLAGS += -DINS_HISTORY_FILE=\"sc-iminfo\"
# Comment out to disable undo/redo support