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