Files
rocm-systems/ext-profiler/example/Makefile
T

23 řádky
522 B
Makefile
Surový Normální zobrazení Historie

2024-09-10 05:57:10 -07:00
#
# Copyright (c) 2024, NVIDIA CORPORATION. All rights reserved.
#
# See LICENSE.txt for license information
#
2025-06-18 10:34:47 -07:00
.DEFAULT_GOAL: build
include ../../makefiles/common.mk
SRCDIR ?= $(abspath ../..)
BUILDDIR ?= .
NCCLDIR := $(BUILDDIR)
2024-09-10 05:57:10 -07:00
2025-06-18 10:34:47 -07:00
SRC_FILES := $(wildcard *.c)
2024-09-10 05:57:10 -07:00
2025-06-18 10:34:47 -07:00
build: ${BUILDDIR}/libnccl-profiler-example.so
${BUILDDIR}/libnccl-profiler-example.so: ${SRC_FILES}
@printf "Compiling %-35s > %s\n" $< $@
@mkdir -p ${BUILDDIR}
$(CC) -Inccl -fPIC -shared -o $@ $^
2024-09-10 05:57:10 -07:00
clean:
2025-06-18 10:34:47 -07:00
rm -f ${BUILDDIR}/libnccl-profiler-example.so