aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--GNUmakefile17
-rw-r--r--compton/.config/GNUmakefile6
2 files changed, 16 insertions, 7 deletions
diff --git a/GNUmakefile b/GNUmakefile
index e9cf987..a666fe1 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,6 +1,6 @@
include dotfiles.mk
-MODULES=xmodmap emacs
+MODULES=xmodmap emacs compton
.PHONY: all clean $(MODULES) zsh
@@ -12,6 +12,21 @@ stow: $(addsuffix -stow,$(MODULES))
zsh:
$(MAKE) -C $@
+###########
+# 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 #
#########
diff --git a/compton/.config/GNUmakefile b/compton/.config/GNUmakefile
deleted file mode 100644
index 9017c1b..0000000
--- a/compton/.config/GNUmakefile
+++ /dev/null
@@ -1,6 +0,0 @@
-include ../../dotfiles.mk
-
-all: compton.conf
-
-%.conf: %.org
- $(call tangle,conf)