From 58cd42d5b034aedbd1ab56b1f5501bc616a11e2b Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Mon, 8 Jan 2018 20:48:18 -0800 Subject: [PATCH] Move cower build to top-level Makefile --- GNUmakefile | 19 +++++++++++++++++-- cower/.config/cower/GNUmakefile | 6 ------ 2 files changed, 17 insertions(+), 8 deletions(-) delete mode 100644 cower/.config/cower/GNUmakefile diff --git a/GNUmakefile b/GNUmakefile index a666fe1..a1d3e88 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,6 +1,6 @@ include dotfiles.mk -MODULES=xmodmap emacs compton +MODULES=xmodmap emacs compton cower .PHONY: all clean $(MODULES) zsh @@ -38,7 +38,7 @@ emacs-clean: $(MAKE) -C emacs/.emacs.d clean emacs-stow: - stow/ust/bin/stow-home emacs + stow/usr/bin/stow-home emacs ########### # Xmodmap # @@ -54,3 +54,18 @@ xmodmap-clean: xmodmap-stow: 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 diff --git a/cower/.config/cower/GNUmakefile b/cower/.config/cower/GNUmakefile deleted file mode 100644 index dcfae2e..0000000 --- a/cower/.config/cower/GNUmakefile +++ /dev/null @@ -1,6 +0,0 @@ -include ../../../dotfiles.mk - -all: config - -%: %.org - $(call tangle,conf-unix)