boinc/sea/Makefile.am

31 lines
669 B
Makefile
Raw Normal View History

EXTRA_DIST = make-sea.sh
vers = @BOINC_MAJOR_VERSION@.@BOINC_MINOR_VERSION@_@target@
sea = boinc_$(vers).sh
all: $(sea)
$(sea): sea.tar make-sea.sh Makefile
./make-sea.sh $< $@ BOINC/binstall.sh
sea.tar: BOINC/boinc BOINC/boincmgr BOINC/binstall.sh
tar cf $@ $^
BOINC/boinc: ../client/boinc BOINC
cp $< $@
BOINC/boincmgr: ../clientgui/boincmgr BOINC
cp $< $@
BOINC/binstall.sh: BOINC
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' > $@
BOINC:
mkdir -p BOINC
clean:
rm -rf BOINC sea.tar $(sea)