diff options
author | brett weiland <brettsweiland@gmail.com> | 2024-06-01 01:36:18 -0500 |
---|---|---|
committer | brett weiland <brettsweiland@gmail.com> | 2024-06-01 01:36:18 -0500 |
commit | b0dd97ee6bf8d5daa587da40ad941efac68152df (patch) | |
tree | f162d32767e0b0f84bed284f6e8ab2c5309ff248 /makefile | |
parent | 093200a449ea38952de52012e324036c106e294b (diff) |
got raycasting laid out
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/makefile b/makefile deleted file mode 100644 index 7f6bddb..0000000 --- a/makefile +++ /dev/null @@ -1,15 +0,0 @@ -LIBS = -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 -$CC = gcc -INC = -I /opt/cuda/include -make: - nvcc $(LIBS) $(INC) -O0 --debug -c main.cu -o build/main.o - nvcc --device-debug --compile kernel.cu -o build/kernel.o - nvcc $(LIBS) -O0 -o build/indigo_worlds build/main.o build/kernel.o - -run: - build/indigo_worlds - -clean: - rm -rf build/* - - |