diff --git a/dist/makefile b/dist/makefile index 33919a7b18bb0bcaa7a7502f63ceb84170f2707d..97a69a87c0c83bd9241aa91cbc96884c23ea354b 100644 --- a/dist/makefile +++ b/dist/makefile @@ -117,3 +117,6 @@ flash: all term: $(TERM) $(PORT) + +doc: + make -BC $(RIOTBASE) doc diff --git a/doc/doxygen/makefile b/doc/doxygen/makefile new file mode 100644 index 0000000000000000000000000000000000000000..7150229df4126445ad3296f0635c53b9c3ac3977 --- /dev/null +++ b/doc/doxygen/makefile @@ -0,0 +1,3 @@ +doc: + doxygen riot.doxyfile + diff --git a/doc/doxygen/ukleos.doxyfile b/doc/doxygen/riot.doxyfile similarity index 100% rename from doc/doxygen/ukleos.doxyfile rename to doc/doxygen/riot.doxyfile diff --git a/makefile b/makefile index 88fd8667a2757999f076d4804d2746b2ada923af..3ee0eb7bc0c71d187ebd9a3f0d4e6aae07df6784 100644 --- a/makefile +++ b/makefile @@ -6,4 +6,5 @@ all: clean: @for i in $(DIRS) ; do $(MAKE) -C $$i clean ; done ; - +doc: + make -BC doc/doxygen