summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0c71d9e
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+EXE = a.out
+SPIRV != find -type f '(' -name '*.frag' -o -name '*.vert' ')' | sed 's/$$/.spv/'
+
+.PHONY: all run clean
+
+all: ${EXE} ${SPIRV}
+run: ${EXE} ${SPIRV}
+	./${EXE}
+
+clean:
+	rm -fv ${EXE} ${SPIRV}
+
+${EXE}: *.c
+	${CC} -Os -Wall -std=c23 $< -o $@ -lSDL3
+
+%.spv: %
+	glslc -O -c "$<" -o "$@"