aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2023-08-19 22:21:12 +0900
committernsfisis <nsfisis@gmail.com>2023-08-19 22:21:30 +0900
commitf5356b5023d80e3e5b58bb00f3b23ddcb8554199 (patch)
tree6332d1ce695f3bdf81fd4c5723b323056d57505d /Makefile
parentb8d5f7cc926c19f87884f8506a925b86c53c99c1 (diff)
downloadRayTracingInOneWeekend.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--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9006a27..3eb994f 100644
--- a/Makefile
+++ b/Makefile
@@ -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