NAME = ./test

CC = clang

all : $(NAME)

$(NAME):
	$(CC) -o $(NAME) main.c -lvulkan -lSDL2 -g

.PHONY: all
