*** empty log message ***

svn path=/trunk/boinc/; revision=5062
This commit is contained in:
Rom Walton 2005-01-10 21:41:41 +00:00
parent f65345e34e
commit d00336cca5
1 changed files with 14 additions and 14 deletions

View File

@ -1,28 +1,28 @@
vers = @BOINC_MAJOR_VERSION@.@BOINC_MINOR_VERSION@_@target@ vers = @BOINC_MAJOR_VERSION@.@BOINC_MINOR_VERSION@_@target@
sea = boinc_$(vers)_sea.sh sea = boinc_$(vers).sh
all: $(sea) all: $(sea)
$(sea): sea.tar make-sea.sh Makefile $(sea): sea.tar make-sea.sh Makefile
./make-sea.sh $< $@ BOINC/binstall.sh ./make-sea.sh $< $@ BOINC/binstall.sh
sea.tar: BOINC/boinc_client BOINC/boinc_gui BOINC/binstall.sh sea.tar: BOINC BOINC/boinc BOINC/boincmgr BOINC/binstall.sh
tar cf $@ $^ tar cf $@ $^
BOINC/boinc_client: ../client/boinc_client BOINC BOINC/boinc: ../client/boinc_client BOINC/boinc
cp $< $@ cp $< $@
BOINC/boinc_gui: ../clientgui/boinc_gui BOINC BOINC/boincmgr: ../clientgui/boinc_gui BOINC/boincmgr
cp $< $@ cp $< $@
BOINC/binstall.sh: BOINC BOINC/binstall.sh: BOINC
echo 'cd BOINC &&\ echo 'cd BOINC &&\
echo "cd \"`pwd`\" && ./boinc_client" > run_client &&\ echo "cd \"`pwd`\" && ./boinc" > run_client &&\
chmod +x run_client &&\ chmod +x run_client &&\
echo now run `pwd`/run_client to run the client and `pwd`/boinc_gui to run the GUI' > $@ echo now run `pwd`/run_client to run the client and `pwd`/boincmgr to run the GUI' > $@
BOINC: BOINC:
mkdir -p BOINC mkdir -p BOINC
clean: clean:
rm -rf BOINC sea.tar $(sea) rm -rf BOINC sea.tar $(sea)