mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-13 07:08:23 +01:00
28 lines
376 B
Bash
Executable File
28 lines
376 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if [ ! -f doc/RELEASE ];then
|
|
cd doc
|
|
ln -s ../phreeqc3-doc/RELEASE.TXT RELEASE
|
|
cd ..
|
|
fi
|
|
|
|
if [ ! -f doc/NOTICE ];then
|
|
cd doc
|
|
ln -s ../phreeqc3-doc/NOTICE.TXT NOTICE
|
|
cd ..
|
|
fi
|
|
|
|
if [ ! -f /doc/html ];then
|
|
cd doc
|
|
doxygen
|
|
cd ..
|
|
fi
|
|
|
|
if [ ! -f doc/README ];then
|
|
cd doc
|
|
ln -s ../phreeqc3-doc/README.IPhreeqc.TXT README
|
|
cd ..
|
|
fi
|
|
|
|
exec autoreconf -fvi
|