-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
64 lines (52 loc) · 1003 Bytes
/
Makefile
File metadata and controls
64 lines (52 loc) · 1003 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
.PHONY: all install clean check_clean deps alldeps help
.DEFAULT_GOAL := help
current_dir := $(dir $(abspath $(firstword $(MAKEFILE_LIST))))
FONTS += ttf-iosevka-nerd \
ttf-iosevkaterm-nerd \
adobe-source-code-pro-fonts \
adobe-source-han-sans-cn-fonts \
adobe-source-han-sans-jp-fonts \
adobe-source-han-sans-kr-fonts \
noto-fonts-cjk \
noto-fonts-emoji
DEPS += stow \
kitty \
git \
ffmpeg \
neovim \
xclip \
ripgrep \
mpd \
ncmpcpp \
mpc \
ncdu \
redshift \
fzf \
zoxide \
eza \
fd \
gperf \
pre-commit \
yay \
mpv \
yt-dlp \
hunspell \
keepassxc
AUR_DEPS += conky-cairo-wayland-git \
googledot-cursor-theme \
cpu-x-git \
tdrop-git \
xdman
all: alldeps install
install:
stow . --dotfiles -t ~ -v
clean:
stow -D . --dotfiles -t ~ -v
deps:
sudo pacman --no-confirm --needed -S $(DEPS)
fonts:
sudo pacman --no-confirm -needed -S $(FONTS)
alldeps: deps fonts
yay --needed -S $(AUR_DEPS)
help:
@cat ./README.md