diff options
| author | nsfisis <nsfisis@gmail.com> | 2023-08-19 22:21:12 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2023-08-19 22:21:30 +0900 |
| commit | f5356b5023d80e3e5b58bb00f3b23ddcb8554199 (patch) | |
| tree | 6332d1ce695f3bdf81fd4c5723b323056d57505d /Makefile | |
| parent | b8d5f7cc926c19f87884f8506a925b86c53c99c1 (diff) | |
| download | RayTracingInOneWeekend.zig-f5356b5023d80e3e5b58bb00f3b23ddcb8554199.tar.gz RayTracingInOneWeekend.zig-f5356b5023d80e3e5b58bb00f3b23ddcb8554199.tar.zst RayTracingInOneWeekend.zig-f5356b5023d80e3e5b58bb00f3b23ddcb8554199.zip | |
feat: change output format to PNG
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,8 +2,8 @@ BUILDFLAGS := -Doptimize=ReleaseFast .PHONY: all all: fmt - @rm -f out.ppm - @zig build ${BUILDFLAGS} run > out.ppm + @rm -f out.png + @zig build ${BUILDFLAGS} run .PHONY: build build: fmt |
