Files
Martin Slachta a04f0dc262 initial
2026-07-18 14:31:15 +02:00

12 lines
149 B
Makefile

FILES=$(wildcard ./*.glsl)
SPIRV=$(FILES:%.glsl=%.spirv)
debug: $(SPIRV)
%.spirv:%.glsl
glslangValidator -g -V $^ -o $@
clean:
rm -f ./*.spirv