inital
This commit is contained in:
14
Makefile
Normal file
14
Makefile
Normal 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
|
||||
Reference in New Issue
Block a user