cpp-raytracer/Makefile

8 lines
271 B
Makefile

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