Files
42_vox/ScopEngine/ThirdParty/KVF/sandbox/Makefile
2025-05-01 23:03:47 +02:00

11 lines
108 B
Makefile

NAME = ./test
CC = clang
all : $(NAME)
$(NAME):
$(CC) -o $(NAME) main.c -lvulkan -lSDL2 -g
.PHONY: all