Update dpkg selections
[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)/
11 @cp home/.profile $(HOME)/
12 @cp home/.fonts.conf $(HOME)/
13 @fc-cache $(HOME)/.fonts
e184ff59 14
576ba7ed 15install_packages: $(DPKG_SELECTIONS)
e184ff59
SK
16 @dpkg --set-selections < $<
17 @apt-get -u dselect-upgrade
18
576ba7ed
SK
19update:
20 @dpkg --get-selections > $(DPKG_SELECTIONS)
21 @cp /etc/apt/sources.list $(APT_SOURCES)
This page took 0.032411 seconds and 4 git commands to generate.