Track dunstrc
[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 -Rp home/.config/ $(HOME)/
12 @cp home/.profile $(HOME)/
13 @cp home/.fonts.conf $(HOME)/
14 @fc-cache $(HOME)/.fonts
15 @cp home/.xbindkeysrc $(HOME)/
16
17 # May still need to run:
18 # 1. dselect update
19 # 2. interactive dselect with install,
20 # 3. apt update
21 # 4. apt upgrade
22 install_packages: $(DPKG_SELECTIONS)
23 @dpkg --set-selections < $<
24 @apt-get -u dselect-upgrade
25
26 update:
27 @dpkg --get-selections > $(DPKG_SELECTIONS)
28 @cp /etc/apt/sources.list $(APT_SOURCES)
This page took 0.063118 seconds and 5 git commands to generate.