aboutsummaryrefslogtreecommitdiffstats
path: root/GNUmakefile
blob: 87c4235e02cf61269dc86ba8d8f7b6891538c198 (plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
include dotfiles.mk

MODULES=xmodmap emacs compton cower mowedline
STOW=stow

.PHONY: all clean $(MODULES) zsh

all: $(MODULES)

clean: $(addsuffix -clean,$(MODULES))

zsh:
	$(MAKE) -C $@

%-install: %
	$(STOW) $^

%-uninstall:
	$(STOW) -D $(subst -uninstall,,$@)

###########
# Compton #
###########

compton: compton/.config/compton.conf

compton/.config/compton.conf: compton/.config/compton.org
	$(call tangle,conf)

compton-clean:
	rm -f compton/.config/compton.conf

#########
# Emacs #
#########

emacs:
	$(MAKE) -C emacs/.emacs.d

emacs-clean:
	$(MAKE) -C emacs/.emacs.d clean

###########
# Xmodmap #
###########

xmodmap: Xmodmap/.Xmodmap

Xmodmap/.Xmodmap: Xmodmap/Xmodmap.org
	$(call tangle,fundamental)

xmodmap-clean:
	rm -f Xmodmap/.Xmodmap

#########
# Cower #
#########

cower: cower/.config/cower/config

cower/.config/cower/config: cower/.config/cower/config.org
	$(call tangle,conf-unix)

cower-clean:
	rm -f cower/.config/cower/config

#############
# Mowedline #
#############

mowedline: mowedline/.config/mowedline/init.scm

mowedline/.config/mowedline/init.scm: SCHEME_IMPLEMENTATION = chicken
mowedline/.config/mowedline/init.scm: mowedline/.config/mowedline/init.org
	$(call tangle,scheme)

mowedline-clean:
	rm -f mowedline/.config/mowedline/init.scm

#########
# Dunst #
#########

dunst: dunst/.config/dunst/dunstrc

dunst/.config/dunst/dunstrc: dunst/.config/dunst/dunstrc.org
	$(call tangle,conf-unix)

dunst-clean:
	rm -f dunst/.config/dunst/dunstrc