Files
Towards/external/loft/examples/viewer/shaders/Makefile
T

12 lines
149 B
Makefile
Raw Normal View History

2026-07-18 14:31:15 +02:00
FILES=$(wildcard ./*.glsl)
SPIRV=$(FILES:%.glsl=%.spirv)
debug: $(SPIRV)
%.spirv:%.glsl
glslangValidator -g -V $^ -o $@
clean:
rm -f ./*.spirv