summaryrefslogtreecommitdiffhomepage
path: root/Makefile.doc
blob: cf95c187fad6c05aacf8752199a7153458d65369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SRCS=$(shell find src -name '*.c')
HEADERS=$(shell find include -name '*.h')
MDDOCS=$(shell find doc -name '*.md')

doxygen : Doxyfile $(SRCS) $(HEADERS) $(MDDOCS)
	doxygen Doxyfile

docs : doxygen

docserver : docs
	firefox doxygen/html/index.html 

docsclean :
	rm -r doxygen
.PHONY : docserver docsclean