forked from Xilinx/triSYCL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (23 loc) · 753 Bytes
/
Copy pathMakefile
File metadata and controls
29 lines (23 loc) · 753 Bytes
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
# Where the documentation is generated, to match also .doxygen files in
# doc/ and dev/publish_API
API_DOXYGEN_DIR=tmp/Doxygen/SYCL
IMPLEMENTATION_DOXYGEN_DIR=tmp/Doxygen/triSYCL
# The target to generate the documentation
#doc: doc-API doc-implementation
doc: doc-implementation
# Obsolete
# Generate the documentation of the SYCL API
#doc-API:
# mkdir -p $(API_DOXYGEN_DIR)
# doxygen doc/SYCL-API.doxygen
# # Compile the PDF version
# cd $(API_DOXYGEN_DIR)/latex; make
doc-implementation:
mkdir -p $(IMPLEMENTATION_DOXYGEN_DIR)
doxygen doc/triSYCL-implementation.doxygen
# Compile the PDF version
cd $(IMPLEMENTATION_DOXYGEN_DIR)/latex; make
doc-clean:
rm -rf $(API_DOXYGEN_DIR) $(IMPLEMENTATION_DOXYGEN_DIR)
publish:
./dev/publish_Doxygen