numam-spdk/doc/Makefile
Daniel Verkamp d4ab30ba33 ioat: add user-mode Intel I/OAT driver
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>
2015-12-09 10:14:15 -07:00

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)