numam-spdk/doc/Makefile
Daniel Verkamp 1010fb3af1 SPDK: Initial check-in
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
2015-09-21 08:52:41 -07:00

16 lines
215 B
Makefile

DOXYFILES = 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)