Initial commit

[ROCm/rccl-tests commit: b188a15299]
This commit is contained in:
Sylvain Jeaugey
2017-08-08 16:18:34 -07:00
commit 4cb47ccb21
12 changed files with 2083 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#
# Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved.
#
# See LICENCE.txt for license information
#
.PHONY : all clean
default : src.build
TARGETS=src
all: ${TARGETS:%=%.build}
clean: ${TARGETS:%=%.clean}
%.build:
${MAKE} -C $* build
%.clean:
${MAKE} -C $* clean