Accept a name for dl and include starter script file
[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 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 dirs
47 cp -Rp bin $(HOME)/
48 $(MAKE) push
49 xdg-user-dirs-update
50
51dirs:
52 mkdir -p $(shell ./list dirs)
53
54compiled:
55 mkdir -p bin
56 cd src && make
57 mv src/clockloop bin/
58
59font_cache:
60 fc-cache -fv
61
62#
63# Void Linux
64#
65
66pkgs_void:
67 sudo xbps-install $(shell ./list pkgs-void.list)
68
69# Mark $pkg as manually-installed:
70#
71# sudo xbps-pkgdb -m manual $pkg
72#
73# List manually-installed packages:
74#
75# xbps-query -m
76#
77pkgs_void_update:
78 xbps-query -m | awk -F - '{sub("-" $$NF "$$", ""); print}' | sort -fu | grep -vf <(./list -v sep='\n' -v end='\n' pkgs-void-src.list) > pkgs-void.list
79 (echo '#'; ./patch-comments pkgs-void.list.comments pkgs-void.list) | sponge pkgs-void.list
80
81#
82# Golang
83#
84pkgs_golang: list pkgs-golang.list
85 go install $(shell ./list pkgs-golang.list)
86
87#
88# Ubuntu
89#
90pkgs_ubuntu: list pkgs-ubuntu.list
91 sudo apt install $(shell ./list pkgs-ubuntu.list)
92
93pkgs_ubuntu_debfiles: list pkgs-ubuntu-debfiles.list
94 ./install-debfiles pkgs-ubuntu-debfiles.list
95
96#
97# PIP
98#
99pkgs_pip_install:
100 pip install --user $(shell ./list pkgs-pip.list)
101
102pkgs_pip_upgrade:
103 pip install --user --upgrade $(shell ./list pkgs-pip.list)
104
105#
106# Rust (cargo)
107#
108
109pkgs_cargo: list pkgs-cargo.list
110 cargo install $(shell ./list pkgs-cargo.list)
111
112#
113# Homebrew/Mac
114#
115
116pkgs_mac:
117 $(MAKE) pkgs_brew_install
118 $(MAKE) pkgs_brew_cask_install
119
120# TODO: Test pkgs_brew_tap when list contains multiple items
121pkgs_brew_tap: list pkgs-brew-tap.list
122 brew tap $(shell ./list pkgs-brew-tap.list)
123
124pkgs_brew_install: list pkgs-brew-install.list
125 brew install $(shell ./list pkgs-brew-install.list)
126
127pkgs_brew_cask_install: list pkgs-brew-cask-install.list
128 brew cask install $(shell ./list pkgs-brew-cask-install.list)
129
130#
131# Debian
132#
133pkgs_deb_install: list pkgs-deb-install.list
134 sudo apt install $(shell ./list pkgs-deb-install.list)
135
136pkgs_deb_purge: list pkgs-deb-purge.list
137 sudo apt purge $(shell ./list pkgs-deb-purge.list)
138
139#
140# Snap
141#
142pkgs_snap_classic: list pkgs-snap-classic.list
143 @$(MAKE) $(foreach p,$(shell ./list pkgs-snap-classic.list),pkg_snap_classic_$(p))
144
145pkgs_snap_strict: list pkgs-snap-strict.list
146 @$(MAKE) $(foreach p,$(shell ./list pkgs-snap-strict.list),pkg_snap_strict_$(p))
147
148# 'snap' command comes from 'snapd' deb pkg
149pkg_snap_classic_%:
150 sudo snap install --classic $*
151pkg_snap_strict_%:
152 sudo snap install $*
153
154deps: $(DEPS)
155
156define GEN_DEP_RULE
157$(1):
158 cd $1 && make
159endef
160
161$(foreach d,$(DEPS),$(eval $(call GEN_DEP_RULE,$(d))))
162
163diff:
164 find home -type f -print0 \
165 | $(SED) -z 's/^home\///g' \
166 | sort -zr \
167 | xargs -0 -I% sh -c 'echo %; $(DIFF) --color=auto ~/% home/%'
168
169.PHONY: diff_bins_untracked
170diff_bins_untracked:
171 ls -1 ~/bin | sort | grep -vf <(ls -1 home/bin | sort)
172
173pull:
174 find home -type f -print0 \
175 | $(SED) -z 's/^home\///g' \
176 | xargs -0 -I% sh -c '$(DIFF) -q ~/% home/% > /dev/null || cp ~/% home/%'
177
178push:
179 # TODO Backup files before replacing.
180 # But - recursive copy is not a good strategy for this.
181 # Need to do a file by file pass, like the diff recipe.
182 #
183 # Limit depth because directories are copied recursively:
184 find home -maxdepth 1 -print0 \
185 | $(GREP) -zv '^home$$' \
186 | xargs -0 -I% cp -Rp % ~
187
188clean:
189 rm -rf ./debfiles
190 cd src && make clean
This page took 0.027966 seconds and 4 git commands to generate.