From Bernd Machenschalk, build self-extracting installer under

Solaris, now works with normal Sun/Solaris make (don't need gnu make).

svn path=/trunk/boinc/; revision=5194
This commit is contained in:
Bruce Allen 2005-01-24 16:19:35 +00:00
parent 3017533fde
commit 6e8bafd7e6
2 changed files with 9 additions and 6 deletions

View File

@ -23184,6 +23184,8 @@ Bruce 24 Jan 2005
- Fixes from Christian Beer for ops pages to approve profiles and
to errors in the previous 20/next 20 links when 'additional
clauses' is non-empty. Restore missing project_footer() function.
- From Bernd Machenschalk, build self-extracting installer under
Solaris, now works with normal Sun/Solaris make (don't need gnu make).
html/
inc/

View File

@ -9,25 +9,26 @@ all: $(sea)
# TABS WITH SPACES!
$(sea): sea.tar make-sea.sh Makefile
./make-sea.sh $< $@ BOINC/binstall.sh
./make-sea.sh sea.tar $(sea) BOINC/binstall.sh
sea.tar: BOINC/boinc BOINC/boincmgr BOINC/binstall.sh
tar cf $@ $^
tar cf sea.tar BOINC/boinc BOINC/boincmgr BOINC/binstall.sh
BOINC/boinc: ../client/boinc BOINC
cp $< $@
cp ../client/boinc BOINC/boinc
BOINC/boincmgr: ../clientgui/boincmgr BOINC
cp $< $@
cp ../clientgui/boincmgr BOINC/boincmgr
BOINC/binstall.sh: BOINC
BOINC/binstall.sh: BOINC Makefile
echo 'cd BOINC &&\
echo "cd \"`pwd`\" && ./boinc" > run_client &&\
chmod +x run_client &&\
echo now run `pwd`/run_client to run the client and `pwd`/boincmgr to run the GUI' > $@
echo now run `pwd`/run_client to run the client and `pwd`/boincmgr to run the GUI' > BOINC/binstall.sh
BOINC:
mkdir -p BOINC
clean:
rm -rf BOINC sea.tar $(sea)