d4ab30ba33
The ioat driver supports DMA engine copy offload hardware available on Intel Xeon platforms. Change-Id: Ida0b17b25816576948ddb1b0443587e0f09574d4 Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
16 lines
229 B
Makefile
16 lines
229 B
Makefile
DOXYFILES = Doxyfile.ioat Doxyfile.nvme
|
|
OUTPUT_DIRS = $(patsubst Doxyfile.%,output.%,$(DOXYFILES))
|
|
|
|
all: doc
|
|
|
|
.PHONY: all doc clean
|
|
|
|
doc: $(OUTPUT_DIRS)
|
|
|
|
output.%: Doxyfile.%
|
|
rm -rf $@
|
|
doxygen $^
|
|
|
|
clean:
|
|
rm -rf $(OUTPUT_DIRS)
|