Rom, normally Makefile.am is happy with any form of white space. But

here some of the rules are copied straight into the Makefile.  For those
it's critical that the leading white space be a tab "\t" and not spaces.

svn path=/trunk/boinc/; revision=5071
This commit is contained in:
Bruce Allen 2005-01-11 11:45:31 +00:00
parent 71fec1defe
commit 1a09d79c02
1 changed files with 13 additions and 10 deletions

View File

@ -5,26 +5,29 @@ sea = boinc_$(vers).sh
all: $(sea)
# WARNING: WHAT FOLLOWS IS 'FRAGILE'. DO NOT REPLACE
# TABS WITH SPACES!
$(sea): sea.tar make-sea.sh Makefile
./make-sea.sh $< $@ BOINC/binstall.sh
./make-sea.sh $< $@ BOINC/binstall.sh
sea.tar: BOINC/boinc BOINC/boincmgr BOINC/binstall.sh
tar cf $@ $^
tar cf $@ $^
BOINC/boinc: ../client/boinc BOINC
cp $< $@
cp $< $@
BOINC/boincmgr: ../clientgui/boincmgr BOINC
cp $< $@
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' > $@
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
mkdir -p BOINC
clean:
rm -rf BOINC sea.tar $(sea)
rm -rf BOINC sea.tar $(sea)