aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile37
1 files changed, 0 insertions, 37 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 1a5cd13..0000000
--- a/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-M4 := m4
-M4_OPTS := -P
-M4_COMMON_DEPS = system.m4
-
-define M4_EXEC
- ${M4} ${M4_OPTS} $< > $@
-endef
-
-TARGETS := linux/tmux.conf \
- Common/zshrc \
- linux/qtile/config/config.py \
- linux/sway/config \
- linux/sway/autostart \
- linux/sway/hid
-
-all: $(TARGETS)
-
-linux/tmux.conf: linux/tmux.conf.m4 \
- ${M4_COMMON_DEPS}
- $(call M4_EXEC)
-
-Common/zshrc: Common/zshrc.m4 \
- ${M4_COMMON_DEPS}
- $(call M4_EXEC)
-
-linux/qtile/config/config.py: linux/qtile/config/config.py.m4 \
- linux/qtile/config/screen.m4.py \
- linux/qtile/config/group.m4.py \
- linux/qtile/config/layout.m4.py \
- linux/qtile/config/keys.m4.py \
- ${M4_COMMON_DEPS}
- $(call M4_EXEC)
-
-linux/sway/%: linux/sway/%.m4 \
- ${M4_COMMON_DEPS}
- $(call M4_EXEC)
-