aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLizzy Fleckenstein <lizzy@vlhl.dev>2026-04-11 00:46:06 +0200
committerLizzy Fleckenstein <lizzy@vlhl.dev>2026-04-11 00:46:06 +0200
commit95f87b6fec2f1fbccfce86b911ca05b7284ec439 (patch)
tree2e38e9fa047cdc35df41eaf3a814693bcee0c067 /Makefile
parentcb0908c919eadb52a2426c887c37b5c64447d82f (diff)
downloadusermoji-95f87b6fec2f1fbccfce86b911ca05b7284ec439.tar.xz
add disco
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0fc4fc1d..ad36b549 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
USERS != ls plain | xargs basename -s .png
-all: plain cube thoughts pets ball heart
+all: plain cube thoughts pets ball heart disco
out/plain/%.png: plain/%.png | out/plain/
cp $< $@
@@ -20,18 +20,25 @@ out/ball/%ball.png: plain/%.png tools/spherize | out/ball/
out/heart/%heart.png: plain/%.png ./mkheart | out/heart/
./mkheart $< $@
+out/disco/%disco.gif: plain/%.png ./mkdisco discooverlay.mkv | out/disco/
+ ./mkdisco $< $@
+
out/%/:
mkdir -p $@
+discooverlay.mkv: mkdiscooverlay
+ ./mkdiscooverlay
+
plain: $(patsubst %, out/plain/%.png, $(USERS))
cube: $(patsubst %, out/cube/%cube.gif, $(USERS))
pets: $(patsubst %, out/pets/%pets.gif, $(USERS))
thoughts: $(patsubst %, out/thoughts/%thoughts.png, $(USERS))
ball: $(patsubst %, out/ball/%ball.png, $(USERS))
heart: $(patsubst %, out/heart/%heart.png, $(USERS))
+disco: $(patsubst %, out/disco/%disco.gif, $(USERS))
clean:
rm -rf out
-.PHONY: all plain cube thoughts pets ball heart
+.PHONY: all plain cube thoughts pets ball heart disco
.NOTPARALLEL: cube