-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.conf
46 lines (36 loc) · 1.66 KB
/
Makefile.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# SRC_ROOT is a path within the working copy that contains the files to be
# installed. Overwrite it to provide a different path.
#SRC_ROOT = $(CURDIR)/$(shell hostname)
# DST_ROOT is a path elsewhere on the system to which the files are installed.
# Overwrite it to install someplace fancy.
#DST_ROOT = $(HOME)/.special-env
# Uncomment this to append files to the EXPORT list. This accepts wildcard
# paths relative to SRC_ROOT.
EXPORT_APPEND += .config/* bin/*
# Uncomment this to recursively export the content of specified directories,
# and not the directories themselves. This accepts wildcard names for
# directories directly under SRC_ROOT. .ssh is implicitly in this list.
EXPORT_CONTENT += .subversion
# Uncomment this to prevent some files or directories directly under SRC_ROOT
# from being exported. This accepts name wildcards but not paths.
NO_EXPORT += .irssi .config
# Uncomment this to override the default EXPORT list. This should rarely be
# necessary.
#EXPORT = $(SRC_ROOT)/.bashrc
# Uncomment this to override the default explicit export list. These files get
# renamed from 'X.export' to just 'X'.
#EXPLICIT_EXPORT = $(SRC_ROOT)/.gitignore.export
# Uncomment this to install additional public keys to the authorized key list.
# Replace '+=' with '=' to completely override the default list.
#AUTHORIZED_KEYS += $(SRC_ROOT)/.ssh/id_rsa.pub
# REMOTE_NAME and REMOTE_BRANCH are used by `make update` to pull dotfile
# updates.
#REMOTE_NAME = origin
#REMOTE_BRANCH = $(shell git symbolic-ref HEAD)
# Uncomment this block to run tasks after init.
#define init_append
#endef
# Uncomment this block to run tasks after install.
#define install_append
#@echo "Done!"
#endef