Track .tmux.conf
[khome.git] / Makefile
1 MAKEFLAGS := --no-builtin-rules
2
3 DPKG_SELECTIONS := system/debian/dpkg-selections
4 APT_SOURCES := system/debian/apt-sources.list
5
6 .PHONY: update install install_packages
7
8 install:
9 @cp -Rp home/bin $(HOME)/
10 @cp -Rp home/lib $(HOME)/
11 @cp home/.compton.conf $(HOME)/
12 @cp -Rp home/.config/ $(HOME)/
13 @cp home/.profile $(HOME)/
14 @cp home/.fonts.conf $(HOME)/
15 @fc-cache $(HOME)/.fonts
16 @cp home/.Rprofile $(HOME)/
17 @cp home/.mpdconf $(HOME)/
18 @cp home/.tmux.conf $(HOME)/
19 @cp home/.xbindkeysrc $(HOME)/
20
21 # May still need to run:
22 # 1. dselect update
23 # 2. interactive dselect with install,
24 # 3. apt update
25 # 4. apt upgrade
26 install_packages: $(DPKG_SELECTIONS)
27 @dpkg --set-selections < $<
28 @apt-get -u dselect-upgrade
29
30 update:
31 @dpkg --get-selections > $(DPKG_SELECTIONS)
32 @cp /etc/apt/sources.list $(APT_SOURCES)
This page took 0.069161 seconds and 5 git commands to generate.