Track .compton.conf
[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)/
57667523 11 @cp home/.compton.conf $(HOME)/
d101fbe9 12 @cp -Rp home/.config/ $(HOME)/
a68d5744
SK
13 @cp home/.profile $(HOME)/
14 @cp home/.fonts.conf $(HOME)/
15 @fc-cache $(HOME)/.fonts
61812c4e 16 @cp home/.Rprofile $(HOME)/
fa0636da 17 @cp home/.mpdconf $(HOME)/
efe0d061 18 @cp home/.xbindkeysrc $(HOME)/
e184ff59 19
110fc59a
SK
20# May still need to run:
21# 1. dselect update
22# 2. interactive dselect with install,
23# 3. apt update
24# 4. apt upgrade
576ba7ed 25install_packages: $(DPKG_SELECTIONS)
e184ff59
SK
26 @dpkg --set-selections < $<
27 @apt-get -u dselect-upgrade
28
576ba7ed
SK
29update:
30 @dpkg --get-selections > $(DPKG_SELECTIONS)
31 @cp /etc/apt/sources.list $(APT_SOURCES)
This page took 0.023084 seconds and 4 git commands to generate.