Fallback on sleep if snore isn't available
[khome.git] / Makefile
... / ...
CommitLineData
1MAKEFLAGS := --no-builtin-rules
2SHELL := /bin/bash
3
4DEPS := $(wildcard deps/*)
5
6ifeq ($(shell uname),Darwin)
7 GREP := ggrep
8 SED := gsed
9 DIFF := $(shell gls -t1 /usr/local/Cellar/diffutils/*/bin/diff | head -1)
10else
11 GREP := grep
12 SED := sed
13 DIFF := diff
14endif
15
16.PHONY: \
17 default \
18 clean \
19 $(DEPS) \
20 deps \
21 home \
22 diff \
23 pull \
24 push \
25 mpdconf_dirs \
26 pkgs_void \
27 pkgs_void_update \
28 pkgs_brew_cask_install \
29 pkgs_brew_install \
30 pkgs_cargo \
31 pkgs_deb_install \
32 pkgs_deb_purge \
33 pkgs_debian \
34 pkgs_mac \
35 pkgs_pip_install \
36 pkgs_pip_upgrade \
37 pkgs_snap_classic \
38 pkgs_snap_strict
39
40default:
41 @echo '================================================================================'
42 @echo '| Default target disabled. Specify a concrete one.'
43 @echo '================================================================================'
44 @exit 1
45
46home: compiled | mpdconf_dirs
47 cp -Rp bin $(HOME)/
48 $(MAKE) push
49 xdg-user-dirs-update
50
51mpdconf_dirs:
52 mkdir -p ~/arc/aud
53 mkdir -p ~/var/lib/mpd/playlists
54 mkdir -p ~/var/log/mpd
55 mkdir -p ~/var/run/mpd
56
57compiled:
58 mkdir -p bin
59 cd src && make
60 mv src/clockloop bin/
61
62font_cache:
63 fc-cache -fv
64
65#
66# Void Linux
67#
68
69pkgs_void:
70 sudo xbps-install $(shell ./list pkgs-void.list)
71
72pkgs_void_update:
73 xbps-query -m | awk -F - '{sub("-" $$NF "$$", ""); print}' | sort -u | grep -vf <(./list -v sep='\n' -v end='\n' pkgs-void-src.list) > pkgs-void.list
74 (echo '#'; ./patch-comments pkgs-void.list.comments pkgs-void.list) | sponge pkgs-void.list
75
76#
77# Golang
78#
79pkgs_golang: list pkgs-golang.list
80 go get -u $(shell ./list pkgs-golang.list)
81
82#
83# Ubuntu
84#
85pkgs_ubuntu: list pkgs-ubuntu.list
86 sudo apt install $(shell ./list pkgs-ubuntu.list)
87
88pkgs_ubuntu_debfiles: list pkgs-ubuntu-debfiles.list
89 ./install-debfiles pkgs-ubuntu-debfiles.list
90
91#
92# PIP
93#
94pkgs_pip_install:
95 pip install --user $(shell ./list pkgs-pip.list)
96
97pkgs_pip_upgrade:
98 pip install --user --upgrade $(shell ./list pkgs-pip.list)
99
100#
101# Rust (cargo)
102#
103
104pkgs_cargo: list pkgs-cargo.list
105 cargo install $(shell ./list pkgs-cargo.list)
106
107#
108# Homebrew/Mac
109#
110
111pkgs_mac:
112 $(MAKE) pkgs_brew_install
113 $(MAKE) pkgs_brew_cask_install
114
115# TODO: Test pkgs_brew_tap when list contains multiple items
116pkgs_brew_tap: list pkgs-brew-tap.list
117 brew tap $(shell ./list pkgs-brew-tap.list)
118
119pkgs_brew_install: list pkgs-brew-install.list
120 brew install $(shell ./list pkgs-brew-install.list)
121
122pkgs_brew_cask_install: list pkgs-brew-cask-install.list
123 brew cask install $(shell ./list pkgs-brew-cask-install.list)
124
125#
126# Debian
127#
128pkgs_deb_install: list pkgs-deb-install.list
129 sudo apt install $(shell ./list pkgs-deb-install.list)
130
131pkgs_deb_purge: list pkgs-deb-purge.list
132 sudo apt purge $(shell ./list pkgs-deb-purge.list)
133
134#
135# Snap
136#
137pkgs_snap_classic: list pkgs-snap-classic.list
138 @$(MAKE) $(foreach p,$(shell ./list pkgs-snap-classic.list),pkg_snap_classic_$(p))
139
140pkgs_snap_strict: list pkgs-snap-strict.list
141 @$(MAKE) $(foreach p,$(shell ./list pkgs-snap-strict.list),pkg_snap_strict_$(p))
142
143# 'snap' command comes from 'snapd' deb pkg
144pkg_snap_classic_%:
145 sudo snap install --classic $*
146pkg_snap_strict_%:
147 sudo snap install $*
148
149deps: $(DEPS)
150
151define GEN_DEP_RULE
152$(1):
153 cd $1 && make
154endef
155
156$(foreach d,$(DEPS),$(eval $(call GEN_DEP_RULE,$(d))))
157
158diff:
159 find home -type f -print0 \
160 | $(SED) -z 's/^home\///g' \
161 | sort -zr \
162 | xargs -0 -I% sh -c 'echo %; $(DIFF) --color=auto ~/% home/%'
163
164pull:
165 find home -type f -print0 \
166 | $(SED) -z 's/^home\///g' \
167 | xargs -0 -I% sh -c '$(DIFF) -q ~/% home/% > /dev/null || cp ~/% home/%'
168
169push:
170 # Limit depth because directories are copied recursively:
171 find home -maxdepth 1 -print0 \
172 | $(GREP) -zv '^home$$' \
173 | xargs -0 -I% cp -Rp % ~
174
175clean:
176 rm -rf ./debfiles
177 cd src && make clean
This page took 0.03076 seconds and 4 git commands to generate.