diff options
author | brett weiland <brettsweiland@gmail.com> | 2024-06-01 16:58:25 -0500 |
---|---|---|
committer | brett weiland <brettsweiland@gmail.com> | 2024-06-01 16:58:25 -0500 |
commit | c05aa71f402abb3b0f05a40fa61e6159cf87ebd6 (patch) | |
tree | 12bcabc50251f5df0687440639339df3036c1db7 /src/makefile | |
parent | b0dd97ee6bf8d5daa587da40ad941efac68152df (diff) |
Diffstat (limited to 'src/makefile')
-rw-r--r-- | src/makefile | 4 |
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 |