This commit is contained in:
2024-07-07 12:53:24 +02:00
commit e6cef74c8b
6 changed files with 1106 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
LDFLAGS = -lglfw -lvulkan -ldl -lpthread
CFLAGS = -g -pedantic -Wall -Wextra -Wshadow -Wunused-macros
VulkanApplication: main.c
gcc $(CFLAGS) -o VulkanApplication main.c $(LDFLAGS)
.PHONY: run clean
run: VulkanApplication
./VulkanApplication
clean:
rm -f VulkanApplication