From 95f87b6fec2f1fbccfce86b911ca05b7284ec439 Mon Sep 17 00:00:00 2001 From: Lizzy Fleckenstein Date: Sat, 11 Apr 2026 00:46:06 +0200 Subject: add disco --- Makefile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3