diff options
| author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2026-04-03 18:37:18 +0200 |
|---|---|---|
| committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2026-04-03 18:37:18 +0200 |
| commit | e62a8d07de0d9117083f74fc1a6a1feceb6f745b (patch) | |
| tree | a76cdd95a0200213da632621254017a3befb9d51 | |
| parent | 3faaa5afa1d7031c8cb50762719ea04250873646 (diff) | |
| download | usermoji-e62a8d07de0d9117083f74fc1a6a1feceb6f745b.tar.xz | |
add plain emojis to out for convenience
| -rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 |
