Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of BLE_API by
doxygen/Makefile@979:afca129bf85f, 2015-11-26 (annotated)
- Committer:
- rgrover1
- Date:
- Thu Nov 26 12:52:36 2015 +0000
- Revision:
- 979:afca129bf85f
- Parent:
- 971:acf895ac7ae4
Synchronized with git rev 6adaa03e
Author: Rohit Grover
Merge branch 'doxygen' of https://github.com/metc/ble into metc-doxygen
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rgrover1 | 971:acf895ac7ae4 | 1 | # Makefile used to generate the API documentation using Doxygen |
rgrover1 | 971:acf895ac7ae4 | 2 | |
rgrover1 | 971:acf895ac7ae4 | 3 | .PHONY: apidoc apidoc_clean |
rgrover1 | 971:acf895ac7ae4 | 4 | |
rgrover1 | 971:acf895ac7ae4 | 5 | all: apidoc |
rgrover1 | 971:acf895ac7ae4 | 6 | |
rgrover1 | 971:acf895ac7ae4 | 7 | apidoc: |
rgrover1 | 971:acf895ac7ae4 | 8 | mkdir -p apidoc |
rgrover1 | 971:acf895ac7ae4 | 9 | doxygen ble.doxyfile |
rgrover1 | 971:acf895ac7ae4 | 10 | |
rgrover1 | 971:acf895ac7ae4 | 11 | apidoc_clean: |
rgrover1 | 971:acf895ac7ae4 | 12 | rm -rf apidoc |