From 093200a449ea38952de52012e324036c106e294b Mon Sep 17 00:00:00 2001 From: Brett Weiland Date: Mon, 27 May 2024 20:56:59 -0500 Subject: boutta switch away from templates --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index b733c07..7f6bddb 100644 --- a/makefile +++ b/makefile @@ -2,14 +2,14 @@ LIBS = -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 $CC = gcc INC = -I /opt/cuda/include make: - nvcc $(LIBS) $(INC) --debug -c main.cu -o build/main.o + nvcc $(LIBS) $(INC) -O0 --debug -c main.cu -o build/main.o nvcc --device-debug --compile kernel.cu -o build/kernel.o - nvcc $(LIBS) -o build/indigo_worlds build/main.o build/kernel.o + nvcc $(LIBS) -O0 -o build/indigo_worlds build/main.o build/kernel.o run: build/indigo_worlds clean: - rm -r build/* + rm -rf build/* -- cgit v1.2.3