12 lines
410 B
Makefile
12 lines
410 B
Makefile
include tools/stow.mk
|
|
include tools/nvim.mk
|
|
include tools/starship.mk
|
|
|
|
.PHONY = tools/all tools/download-all tools/clean
|
|
|
|
tools/clean:
|
|
rm -rf $(LOCAL_TOOLS_BIN)/stow $(LOCAL_TOOLS_BIN)/nvim $(LOCAL_TOOLS_BIN)/starship
|
|
|
|
tools/download-all: $(STOW_DOWNLOAD_LOCATION) $(NVIM_DOWNLOAD_LOCATION) $(STARSHIP_DOWNLOAD_LOCATION)
|
|
|
|
tools/all: $(LOCAL_TOOLS_BIN)/stow $(LOCAL_TOOLS_BIN)/nvim $(LOCAL_TOOLS_BIN)/starship
|