Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 146b150

Browse files
committed
change compile output for the readability
1 parent 4062f7a commit 146b150

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

05_debug_profiling/08_memcheck/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CUDA_PATH=/usr/local/cuda
22
HOST_COMPILER ?= g++
33
NVCC=${CUDA_PATH}/bin/nvcc -ccbin ${HOST_COMPILER}
4-
TARGET=simple_sgemm oob mem_leak
4+
TARGET=simple_sgemm simple_sgemm_oob simple_sgemm_mem_leak
55

66
INCLUDES = -I${CUDA_PATH}/samples/common/inc
77
NVCC_FLAGS=-m64
@@ -20,10 +20,10 @@ all : ${TARGET}
2020
simple_sgemm: simple_sgemm.cu
2121
$(EXEC) $(NVCC) $(ALL_CCFLAGS) $(GENCODE_FLAGS) -o $@ $+ $(LIBRARIES)
2222

23-
oob: simple_sgemm_oob.cu
23+
simple_sgemm_oob: simple_sgemm_oob.cu
2424
$(EXEC) $(NVCC) $(ALL_CCFLAGS) $(GENCODE_FLAGS) -o $@ $+ $(LIBRARIES)
2525

26-
mem_leak: simple_sgemm_mem_leak.cu
26+
simple_sgemm_mem_leak: simple_sgemm_mem_leak.cu
2727
$(EXEC) $(NVCC) $(ALL_CCFLAGS) $(GENCODE_FLAGS) -o $@ $+ $(LIBRARIES)
2828

2929
clean:

0 commit comments

Comments
 (0)