From 1a09d79c02552aa1266882c130de38366a9a0f5b Mon Sep 17 00:00:00 2001 From: Bruce Allen Date: Tue, 11 Jan 2005 11:45:31 +0000 Subject: [PATCH] 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 --- sea/Makefile.am | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/sea/Makefile.am b/sea/Makefile.am index b52221e293..2e8a3b2e45 100644 --- a/sea/Makefile.am +++ b/sea/Makefile.am @@ -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)