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