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