diff options
| author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2026-04-11 00:46:06 +0200 |
|---|---|---|
| committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2026-04-11 00:46:06 +0200 |
| commit | 95f87b6fec2f1fbccfce86b911ca05b7284ec439 (patch) | |
| tree | 2e38e9fa047cdc35df41eaf3a814693bcee0c067 /Makefile | |
| parent | cb0908c919eadb52a2426c887c37b5c64447d82f (diff) | |
| download | usermoji-95f87b6fec2f1fbccfce86b911ca05b7284ec439.tar.xz | |
add disco
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -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 |
