9 lines
234 B
Makefile
9 lines
234 B
Makefile
# Lists the available actions
|
|
default:
|
|
@just --list
|
|
|
|
# Convert the human-readable shader code to Vulkan bytecode
|
|
compile-shaders:
|
|
glslc shaders/shader.vert -o shaders/vert.spv
|
|
glslc shaders/shader.frag -o shaders/frag.spv
|