source: trunk/third/cns/.build @ 8793

Revision 8793, 672 bytes checked in by ghudson, 28 years ago (diff)
The Athena 8.0 .build file.
Line 
1set rule = skip
2
3cd $BUILD/$package
4
5if ( $installman == "1" ) then
6        exit 0
7endif
8
9if ( $installonly == "0" ) then
10        (echo "Configuring in $package..." ; \
11        ./configure --site=athena) >>& $outfile && \
12        (echo "Depending in $package..." ; make depend) >>& $outfile && \
13        (echo "Cleaning in $package..." ; make clean) >>& $outfile && \
14        (echo "Building in $package..." ; make) >>& $outfile
15        if ( $status == 1 ) then
16                echo "We bombed in $package" >> & $outfile
17                exit -1
18        endif
19endif
20
21(echo "Installing in $package..." ; make install DESTDIR=$SRVD) >>& $outfile
22if ( $status == 1 ) then
23        echo "We bombed in $package" >> & $outfile
24        exit -1
25endif
26
Note: See TracBrowser for help on using the repository browser.