Organize into home and system directories
[khome.git] / Makefile
1 MAKEFLAGS := --no-builtin-rules
2
3 .PHONY: install install_packages
4
5 install:
6 @cp -Rp home/bin $(HOME)/
7 @cp -Rp home/lib $(HOME)/
8 @cp home/.profile $(HOME)/
9 @cp home/.fonts.conf $(HOME)/
10 @fc-cache $(HOME)/.fonts
11
12 install_packages: system/debian/dpkg-selections
13 @dpkg --set-selections < $<
14 @apt-get -u dselect-upgrade
15
16 system/debian/dpkg-selections:
17 @dpkg --get-selections > $@
This page took 0.068819 seconds and 5 git commands to generate.