Switch system config updates to manual
[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/.profile $(HOME)/
12 @cp home/.fonts.conf $(HOME)/
13 @fc-cache $(HOME)/.fonts
14
15 install_packages: $(DPKG_SELECTIONS)
16 @dpkg --set-selections < $<
17 @apt-get -u dselect-upgrade
18
19 update:
20 @dpkg --get-selections > $(DPKG_SELECTIONS)
21 @cp /etc/apt/sources.list $(APT_SOURCES)
This page took 0.078905 seconds and 5 git commands to generate.