Add snapd pkg
[khome.git] / Makefile
... / ...
CommitLineData
1MAKEFLAGS := --no-builtin-rules
2
3.PHONY: home pkgs_install pkgs_purge pkgs deps
4
5home:
6 @cp -Rp home/bin $(HOME)/
7 @cp -Rp home/lib $(HOME)/
8 @cp home/.compton.conf $(HOME)/
9 @cp -Rp home/.config/ $(HOME)/
10 @cp home/.profile $(HOME)/
11 @cp home/.fonts.conf $(HOME)/
12 @fc-cache $(HOME)/.fonts
13 @cp home/.Rprofile $(HOME)/
14 @cp home/.mpdconf $(HOME)/
15 @cp home/.tmux.conf $(HOME)/
16 @cp home/.xbindkeysrc $(HOME)/
17
18pkgs:
19 $(MAKE) pkgs_install
20 $(MAKE) pkgs_purge
21
22pkgs_install: list pkgs-install
23 sudo apt install $(shell ./list pkgs-install)
24
25pkgs_purge: list pkgs-purge
26 sudo apt purge $(shell ./list pkgs-purge)
27
28deps:
29 @$(foreach d,$(wildcard deps/*),cd $(d) && make)
This page took 0.021477 seconds and 4 git commands to generate.