summaryrefslogtreecommitdiff
path: root/src/makefile
diff options
context:
space:
mode:
authorbrett weiland <brettsweiland@gmail.com>2024-06-01 16:58:25 -0500
committerbrett weiland <brettsweiland@gmail.com>2024-06-01 16:58:25 -0500
commitc05aa71f402abb3b0f05a40fa61e6159cf87ebd6 (patch)
tree12bcabc50251f5df0687440639339df3036c1db7 /src/makefile
parentb0dd97ee6bf8d5daa587da40ad941efac68152df (diff)
project is deadHEADmaster
Diffstat (limited to 'src/makefile')
-rw-r--r--src/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefile b/src/makefile
index 4d86411..eb8e91b 100644
--- a/src/makefile
+++ b/src/makefile
@@ -7,10 +7,10 @@ CU_SRCFILES := $(wildcard *.cu)
CU_OBJFILES := $(patsubst %.cu, %.o, $(CU_SRCFILES))
all: $(CU_OBJFILES)
- nvcc $(LIBS) -o build/indigo_worlds build/*.o
+ nvcc $(LIBS) -g -G -o build/indigo_worlds build/*.o
%.o: %.cu
- nvcc --device-debug -dc -c $< -o build/$@
+ nvcc -g -G -dc -c $< -o build/$@
run: all
build/indigo_worlds