Reorg software list and add hardware list
[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
efe0d061 14 @cp home/.xbindkeysrc $(HOME)/
e184ff59 15
110fc59a
SK
16# May still need to run:
17# 1. dselect update
18# 2. interactive dselect with install,
19# 3. apt update
20# 4. apt upgrade
576ba7ed 21install_packages: $(DPKG_SELECTIONS)
e184ff59
SK
22 @dpkg --set-selections < $<
23 @apt-get -u dselect-upgrade
24
576ba7ed
SK
25update:
26 @dpkg --get-selections > $(DPKG_SELECTIONS)
27 @cp /etc/apt/sources.list $(APT_SOURCES)
This page took 0.027319 seconds and 4 git commands to generate.