aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--GNUmakefile15
-rw-r--r--mowedline/GNUmakefile7
2 files changed, 14 insertions, 8 deletions
diff --git a/GNUmakefile b/GNUmakefile
index d349c74..b7a1e18 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,6 +1,6 @@
include dotfiles.mk
-MODULES=xmodmap emacs compton cower
+MODULES=xmodmap emacs compton cower mowedline
STOW=stow/usr/bin/stow-home
.PHONY: all clean $(MODULES) zsh
@@ -61,3 +61,16 @@ cower/.config/cower/config: cower/.config/cower/config.org
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
diff --git a/mowedline/GNUmakefile b/mowedline/GNUmakefile
deleted file mode 100644
index ee829e6..0000000
--- a/mowedline/GNUmakefile
+++ /dev/null
@@ -1,7 +0,0 @@
-include ../dotfiles.mk
-
-all: .config/mowedline/init.scm
-
-%.scm: SCHEME_IMPLEMENTATION = chicken
-%.scm: %.org
- $(call tangle,scheme)