aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fc3a512..050f192 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
PREFIX?=$(HOME)/.config/nvim
-FENNEL?=fennel
-SOURCES := $(shell find . -name '*.lua')
+SOURCES := $(shell find . -name '*.lua' -or -name '*.spl')
install:
-rm $(PREFIX)/lua/gabrielgio/*
mkdir -p $(PREFIX)/lua/gabrielgio/
+ mkdir -p $(PREFIX)/lua/spell/
for name in $(SOURCES); do\
install -m644 $${name} $(PREFIX)/$${name}; \
done