aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLizzy Fleckenstein <lizzy@vlhl.dev>2026-04-03 18:37:18 +0200
committerLizzy Fleckenstein <lizzy@vlhl.dev>2026-04-03 18:37:18 +0200
commite62a8d07de0d9117083f74fc1a6a1feceb6f745b (patch)
treea76cdd95a0200213da632621254017a3befb9d51
parent3faaa5afa1d7031c8cb50762719ea04250873646 (diff)
downloadusermoji-e62a8d07de0d9117083f74fc1a6a1feceb6f745b.tar.xz
add plain emojis to out for convenience
-rw-r--r--Makefile8
1 files 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