forked from openucx/ucc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
47 lines (35 loc) · 781 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright (C) Huawei Technologies Co., Ltd. 2020. All rights reserved.
# $HEADER$
#
if !DOCS_ONLY
SUBDIRS = \
src \
contrib \
tools/info \
cmake
if HAVE_MPICXX
SUBDIRS += \
tools/perf \
test/mpi
endif
if HAVE_GTEST
SUBDIRS += test/gtest
gtest:
@make -C test/gtest test
endif
endif #!DOCS_ONLY
include $(srcdir)/docs/doxygen/doxygen.am
.PHONY: docs docs-clean
DOCLIST = docs/doxygen/doxygen-doc/ucc.tag
FORMAT = pdf
DOT_CLEANFILES =
docs: $(DOCLIST)
docs-clean:
$(RM) $(DX_CLEANFILES)
$(RM) $(DOT_CLEANFILES)
docs/doxygen/doxygen-doc/ucc.tag: $(doxygen_doc_files) doxygen-doc
.dot.pdf:
dot -T pdf -o $@ $<
MOSTLYCLEANFILES = $(DX_CLEANFILES) $(DOT_CLEANFILES)