diff options
author | Till Höppner | 2017-01-03 14:51:38 +0100 |
---|---|---|
committer | Till Höppner | 2017-01-03 14:56:23 +0100 |
commit | cd55a0b7334c78794792c2a67ad10d642a07464d (patch) | |
tree | 516978fc08c9ba241d8abaa0183511b308b62522 /Makefile | |
download | tg-solarized-cd55a0b7334c78794792c2a67ad10d642a07464d.tar.gz tg-solarized-cd55a0b7334c78794792c2a67ad10d642a07464d.tar.xz tg-solarized-cd55a0b7334c78794792c2a67ad10d642a07464d.zip |
Initial commit.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3405bd8 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +.PHONY: all +all: dirs out/tg-solarized-dark.tdesktop-theme out/tg-solarized-light.tdesktop-theme +dirs: out/dark/.d out/light/.d + +%/.d: + mkdir -p $(dir $@) + @touch $@ + +.SECONDARY: +out/%/colors.tdesktop-theme: solarized.part %.part colors.part + cat $^ > $@ + +out/tg-solarized-%.tdesktop-theme: out/%/colors.tdesktop-theme + zip $@ $^ + +.PHONY: clean +clean: + rm -rv out |