Added automatic compilation of unite_html_b_line.c to developer compile script

This commit is contained in:
Thomas Schmitt 2015-08-12 09:09:47 +00:00
parent 02213905f4
commit 8d59a556b1
1 changed files with 10 additions and 1 deletions

View File

@ -1,7 +1,8 @@
#!/bin/sh
# compile_xorriso.sh
# Copyright 2005 - 2010 Thomas Schmitt, scdbackup@gmx.net, GPL version 2
# Copyright 2005 - 2015 Thomas Schmitt, scdbackup@gmx.net
# GPL version 2 or later
#
# Not intended for general use in production installations !
# Rather use: ./bootstrap ; ./configure ; make
@ -219,4 +220,12 @@ then
strip "$xorr"/xorriso
fi
if test -x $xorr/unite_html_b_line
then
dummy=dummy
else
echo "compiling helper program $xorr/unite_html_b_line"
( cd $xorr && cc -g -Wall -o unite_html_b_line unite_html_b_line.c )
fi
echo 'done.'