Replace doxyrun.sh with makefile

This commit is contained in:
Leonetienne 2022-06-01 21:29:43 +02:00
parent 522f9551ae
commit a4ebcd16b9
No known key found for this signature in database
GPG Key ID: C33879CD92E9708C
4 changed files with 10 additions and 11 deletions

View File

@ -1,11 +0,0 @@
#!zsh
# Copy repository readme here to be used as a cover page
tail ../readme.md -n +2 > index.md
# Run doxygen
doxygen doxyfig
# Cleanup index.md
rm -f index.md

10
BmpPP/doxygen/Makefile Normal file
View File

@ -0,0 +1,10 @@
all:
# Copy all but the header of the readme here
tail ../../readme.md -n +2 > index.md
#
# Run doxygen
doxygen doxyfig
#
# Cleanup index.md
rm index.md