mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 23:54:06 +00:00
58703de05c
Still not really async. Need to use multiple queues.
16 lines
223 B
Makefile
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
|