blob: 0aa85f9653fa65b289e31eeae4b30f0963d8c471 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
cur_dir := $(notdir $(patsubst %/,%,$(dir $(mkfile_path))))
repo_dir := $(dir $(mkfile_path))
bin_dir := $(repo_dir)bin
bin_file_name := 10-$(cur_dir)
all:
$(bin_dir)/pycombine -e '(Makefile|README.md|debian)' "$(HOME)" "$(repo_dir)"
xdg-settings set default-url-scheme-handler org-protocol org-protocol.desktop
fonts:
$(bin_dir)/setup-install-fonts
|