Files
rocm-systems/projects/rccl/pkg/Makefile
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 rader
530 B
Makefile
Normal vy Historik

2018-09-24 16:06:59 -07:00
#
2019-03-14 19:39:20 -07:00
# Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved.
2018-09-24 16:06:59 -07:00
#
# See LICENSE.txt for license information
#
.PHONY : all clean
default : build
build : debian.build txz.build
BUILDDIR ?= $(abspath ../build)
ABSBUILDDIR := $(abspath $(BUILDDIR))
2025-09-02 13:21:14 -07:00
TARGETS := debian txz doc
2018-09-24 16:06:59 -07:00
all: ${TARGETS:%=%.build}
prep: ${TARGETS:%=%.prep}
build: ${TARGETS:%=%.build}
clean: ${TARGETS:%=%.clean}
%.prep:
${MAKE} -C $* prep BUILDDIR=${ABSBUILDDIR}
%.build:
${MAKE} -C $* build BUILDDIR=${ABSBUILDDIR}
%.clean:
${MAKE} -C $* clean