dotfiles/GNUmakefile

57 lines
827 B
Text
Raw Normal View History

2017-04-03 05:22:36 +02:00
include dotfiles.mk
2016-11-24 21:45:18 +01:00
2017-06-22 09:07:28 +02:00
MODULES=xmodmap emacs compton
2017-04-03 05:22:36 +02:00
.PHONY: all clean $(MODULES) zsh
all: $(MODULES)
clean: $(addsuffix -clean,$(MODULES))
stow: $(addsuffix -stow,$(MODULES))
2016-11-24 21:45:18 +01:00
zsh:
$(MAKE) -C $@
2017-04-03 05:22:36 +02:00
2017-06-22 09:07:28 +02:00
###########
# 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
compton-stow:
stow/usr/bin/stow-home compton
#########
# Emacs #
#########
emacs:
$(MAKE) -C emacs/.emacs.d
emacs-clean:
$(MAKE) -C emacs/.emacs.d clean
emacs-stow:
stow/ust/bin/stow-home emacs
2017-04-03 05:22:36 +02:00
###########
# Xmodmap #
###########
xmodmap: Xmodmap/.Xmodmap
Xmodmap/.Xmodmap: Xmodmap/Xmodmap.org
$(call tangle,fundamental)
xmodmap-clean:
rm -f Xmodmap/.Xmodmap
xmodmap-stow:
stow/usr/bin/stow-home Xmodmap