mirror of https://github.com/BOINC/boinc.git
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:
parent
3017533fde
commit
6e8bafd7e6
|
@ -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/
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue