24 lines
555 B
Makefile
24 lines
555 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)
|
||
|
|
DST_DIR := $(BUILDDIR)/test/unit/plugins
|
||
|
|
|
||
|
|
build: ${BUILDDIR}/libnccl-tuner-basic.so
|
||
|
|
|
||
|
|
${BUILDDIR}/libnccl-tuner-basic.so: ${SRC_FILES}
|
||
|
|
@printf "Compiling %-35s > %s\n" $< $@
|
||
|
|
@mkdir -p ${BUILDDIR}
|
||
|
|
$(CC) -Inccl -fPIC -shared -o $@ $^
|
||
|
|
|
||
|
|
clean:
|
||
|
|
rm -f ${BUILDDIR}/libnccl-tuner-basic.so
|