From e62a8d07de0d9117083f74fc1a6a1feceb6f745b Mon Sep 17 00:00:00 2001 From: Lizzy Fleckenstein Date: Fri, 3 Apr 2026 18:37:18 +0200 Subject: add plain emojis to out for convenience --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 83ccbed0..26e80f15 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,9 @@ USERS != ls plain | xargs basename -s .png -all: cube thoughts pets ball +all: plain cube thoughts pets ball + +out/plain/%.png: plain/%.png | out/plain/ + cp $< $@ out/cube/%cube.gif: plain/%.png mkcube tools/Vulkan-Tools/ | out/cube/ ./mkcube $< $@ @@ -17,6 +20,7 @@ out/ball/%ball.png: plain/%.png tools/spherize | out/ball/ out/%/: mkdir -p $@ +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)) @@ -25,5 +29,5 @@ ball: $(patsubst %, out/ball/%ball.png, $(USERS)) clean: rm -rf out -.PHONY: all cube thoughts pets ball +.PHONY: all plain cube thoughts pets ball .NOTPARALLEL: cube -- cgit v1.2.3