8 lines
290 B
Makefile
8 lines
290 B
Makefile
raytracer: camera.hpp color.hpp hittable.hpp hittable_list.hpp material.hpp ray.hpp rtweekend.hpp sphere.hpp vec3.hpp
|
|
@g++ -g -O2 -Wall -Wextra -Wpedantic main.cpp -o raytracer
|
|
|
|
image: raytracer
|
|
@./raytracer > image.ppm
|
|
@if [ $$TERM = "xterm-kitty" ]; then\
|
|
kitty icat image.ppm;\
|
|
fi
|