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