File: autobuild.sh

package info (click to toggle)
xnee 3.19-9.4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,432 kB
  • sloc: ansic: 23,555; sh: 13,521; makefile: 600
file content (21 lines) | stat: -rwxr-xr-x 471 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

XNEE_OUTPUT_FILE=-xnee.txt
XNEE_OUTPUT_FILE_H=xnee.html

rm $XNEE_OUTPUT_FILE

# make sure we're in the correct dir
#   ... well, it's not bullet proof
if [ ! -f Makefile.cvs ]
then
    echo "Make sure you're in the root dir"
    exit
fi

make clean 
./configure --disable-gui --disable-gnome-applet > ${XNEE_OUTPUT_FILE}
make check >>  ${XNEE_OUTPUT_FILE}
htmlize ${XNEE_OUTPUT_FILE}.html

autobuild --verbose ${XNEE_OUTPUT_FILE}.html > ${XNEE_OUTPUT_FILE_H}