42d84317cf
git-subtree-dir: projects/rccl git-subtree-mainline:3fd8a0d393git-subtree-split:1f2f9f33ba
23 строки
512 B
Makefile
23 строки
512 B
Makefile
#
|
|
# Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved.
|
|
#
|
|
# See LICENSE.txt for license information
|
|
#
|
|
.DEFAULT_GOAL: build
|
|
include ../../makefiles/common.mk
|
|
SRCDIR ?= $(abspath ../..)
|
|
BUILDDIR ?= .
|
|
NCCLDIR := $(BUILDDIR)
|
|
|
|
SRC_FILES := $(wildcard *.c)
|
|
|
|
build: ${BUILDDIR}/libnccl-net-example.so
|
|
|
|
${BUILDDIR}/libnccl-net-example.so: ${SRC_FILES}
|
|
@printf "Compiling %-35s > %s\n" $< $@
|
|
@mkdir -p ${BUILDDIR}
|
|
$(CC) -Inccl -fPIC -shared -o $@ $^
|
|
|
|
clean:
|
|
rm -f ${BUILDDIR}/libnccl-net-example.so
|