Move cower build to top-level Makefile
This commit is contained in:
parent
aa9410f256
commit
58cd42d5b0
2 changed files with 17 additions and 8 deletions
19
GNUmakefile
19
GNUmakefile
|
@ -1,6 +1,6 @@
|
||||||
include dotfiles.mk
|
include dotfiles.mk
|
||||||
|
|
||||||
MODULES=xmodmap emacs compton
|
MODULES=xmodmap emacs compton cower
|
||||||
|
|
||||||
.PHONY: all clean $(MODULES) zsh
|
.PHONY: all clean $(MODULES) zsh
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ emacs-clean:
|
||||||
$(MAKE) -C emacs/.emacs.d clean
|
$(MAKE) -C emacs/.emacs.d clean
|
||||||
|
|
||||||
emacs-stow:
|
emacs-stow:
|
||||||
stow/ust/bin/stow-home emacs
|
stow/usr/bin/stow-home emacs
|
||||||
|
|
||||||
###########
|
###########
|
||||||
# Xmodmap #
|
# Xmodmap #
|
||||||
|
@ -54,3 +54,18 @@ xmodmap-clean:
|
||||||
|
|
||||||
xmodmap-stow:
|
xmodmap-stow:
|
||||||
stow/usr/bin/stow-home Xmodmap
|
stow/usr/bin/stow-home 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
|
||||||
|
|
||||||
|
cower-stow:
|
||||||
|
stow/usr/bin/stow-home cower
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
include ../../../dotfiles.mk
|
|
||||||
|
|
||||||
all: config
|
|
||||||
|
|
||||||
%: %.org
|
|
||||||
$(call tangle,conf-unix)
|
|
Loading…
Reference in a new issue