mirror of
https://github.com/Kbz-8/42_vox.git
synced 2026-01-11 22:53:35 +00:00
11 lines
108 B
Makefile
11 lines
108 B
Makefile
NAME = ./test
|
|
|
|
CC = clang
|
|
|
|
all : $(NAME)
|
|
|
|
$(NAME):
|
|
$(CC) -o $(NAME) main.c -lvulkan -lSDL2 -g
|
|
|
|
.PHONY: all
|