From 28d4fd2dc5c6200c9ca9446743fd7f7c4cbe4964 Mon Sep 17 00:00:00 2001 From: Ward Truyen Date: Sat, 24 May 2025 12:18:30 +0200 Subject: [PATCH] Chore: added makefile for regular tasks --- makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..2cc0bd0 --- /dev/null +++ b/makefile @@ -0,0 +1,18 @@ +NVIM_CONFIG=~/.config/nvim/# + +default : print-help +help : print-help + +print-help : + @echo -e "Help!?!?" + @echo -e "Use 'make instal' to instal this config to your home config" + @echo -e "Use 'make code' to get code from your config to this project" + @echo -e "ConfigPath=$(NVIM_CONFIG)" + +instal : + @echo -e "Iinstalling to $(NVIM_CONFIG)" + +code : + @echo -e "Getting code from $(NVIM_CONFIG)" + cp $(NVIM_CONFIG)*.lua ./ + cp -r $(NVIM_CONFIG)lua ./