Delete deprecated cmake_doc.sh

This commit is contained in:
Luis Diaz Mas 2019-02-28 22:27:09 +01:00 committed by Luis Díaz Más
parent 84baf3cec0
commit 31f256da29

View File

@ -1,24 +0,0 @@
#!/bin/bash
##
# this is called by the CMake build to build the docs
##
if [ $# == 1 ]; then
CMAKE_BINARY_DIR="$1"
cd ..
if [ -e src/exv_conf.h ]; then
mv src/exv_conf.h src/exv_conf.h.keep
fi
make config
./configure
if [ -e src/exv_conf.h.keep ]; then
mv src/exv_conf.h.keep src/exv_conf.h
fi
mkdir -p src/bin/
cp -f "${CMAKE_BINARY_DIR}/bin/taglist" src/bin/
make doc
fi
# That's all Folks
##