-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (22 loc) · 565 Bytes
/
Makefile
File metadata and controls
26 lines (22 loc) · 565 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
DEFAULT: install-all
.PHONY: install-all
install-all:
@echo "Installing all dependencies and Setting up"
./install.zsh
.PHONY: symlink
symlink:
@echo "Setting up symlinks"
./install/symlink.zsh
.PHONY: dependency-check
dependency-check:
@echo "Checking dependencies"
./.zsh/dependency-check.zsh
.PHONY: help
help:
@echo "Usage: make [target]"
@echo ""
@echo "Targets:"
@echo " install-all: Install all dependencies and setup"
@echo " symlink: Create symlinks"
@echo " dependency-check: Check dependencies"
@echo " help: Show this help message"