diff options
| author | Charlie Stanton <charlie@shtanton.xyz> | 2025-04-06 17:26:30 +0100 | 
|---|---|---|
| committer | Charlie Stanton <charlie@shtanton.xyz> | 2025-04-06 17:26:30 +0100 | 
| commit | a6f443fc844215b474f245bfb6bcd2e4c1c37e93 (patch) | |
| tree | 1b627351a9f16caa88da8d6e8ddec0a11e76d6e2 /Makefile | |
| parent | 75d02c350fa76ffb9f960338b893179f3661692d (diff) | |
| download | ldjam57-a6f443fc844215b474f245bfb6bcd2e4c1c37e93.tar | |
Add nelson to SDL version
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 15 | 
1 files changed, 14 insertions, 1 deletions
| @@ -42,7 +42,10 @@ build/music.c: build/music.pcm  		echo '};' \  	) > build/music.c -build/images.c: build/continue.qoi build/exit.qoi build/pause.qoi build/play.qoi build/restart.qoi build/img +build/images.c: \ +		build/continue.qoi build/exit.qoi build/pause.qoi build/play.qoi build/restart.qoi \ +		build/nelson.qoi build/nelson_up.qoi build/nelson_down.qoi build/nelson_left.qoi build/nelson_right.qoi \ +		build/img  	mkdir -p build  	(\  		build/img pixels build/continue.qoi 1 && \ @@ -50,12 +53,22 @@ build/images.c: build/continue.qoi build/exit.qoi build/pause.qoi build/play.qoi  		build/img pixels build/pause.qoi 3 && \  		build/img pixels build/play.qoi 4 && \  		build/img pixels build/restart.qoi 5 && \ +		build/img pixels build/nelson.qoi 6 && \ +		build/img pixels build/nelson_left.qoi 7 && \ +		build/img pixels build/nelson_up.qoi 8 && \ +		build/img pixels build/nelson_right.qoi 9 && \ +		build/img pixels build/nelson_down.qoi 10 && \  		echo 'Image images[] = {{0},' && \  		build/img image build/continue.qoi 1 && \  		build/img image build/exit.qoi 2 && \  		build/img image build/pause.qoi 3 && \  		build/img image build/play.qoi 4 && \  		build/img image build/restart.qoi 5 && \ +		build/img image build/nelson.qoi 6 && \ +		build/img image build/nelson_left.qoi 7 && \ +		build/img image build/nelson_up.qoi 8 && \ +		build/img image build/nelson_right.qoi 9 && \ +		build/img image build/nelson_down.qoi 10 && \  		echo '};' \  	) > build/images.c | 
