Hans-Kristian Arntzen 58703de05c Vulkan: Add initial async compute.
Still not really async. Need to use multiple queues.
2016-06-27 20:54:53 +02:00

16 lines
223 B
Makefile

COMP_SHADERS := $(wildcard *.comp)
SPIRV := $(COMP_SHADERS:.comp=.comp.inc)
GLSLANG := glslc
GLSLFLAGS := -mfmt=c
all: $(SPIRV)
%.comp.inc: %.comp
$(GLSLANG) $(GLSLFLAGS) -o $@ $<
clean:
rm -f $(SPIRV)
.PHONY: clean