From fb3c96d50d625db725940625120012c75afc17f6 Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Fri, 14 Jun 2024 19:06:50 +0200 Subject: feat: Initial commit --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4aba75d --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +PREFIX?=$(HOME)/.config/nvim +FENNEL?=fennel +SOURCES := $(shell find . -name '*.lua') + +install: + rm $(PREFIX)/lua/gabrielgio/* + mkdir -p $(PREFIX)/lua/gabrielgio/ + for name in $(SOURCES); do\ + install -m644 $${name} $(PREFIX)/$${name}; \ + done + +format: + mkdir -p $(PREFIX)/lua/gabrielgio/ + for name in $(SOURCES); do\ + lua-format -i $${name}; \ + done -- cgit v1.2.3