3d_fractals_cuda/makefile
Brett Weiland 882999e591 workspace
2024-05-08 22:52:46 -05:00

12 lines
210 B
Makefile

LIBS = -lraylib -lGL -lm -lpthread -ldl -lrt -lX11
$CC = gcc
make:
$(CC) $(LIBS) main.c -o build/main.o
nvcc --compile main.cu -o build/kernel.o
gcc -o indigo_worlds main.o kernel.o
clean:
rm -r build/*