removed spurious dependencies in tool to avoid pointless re-linking

svn path=/trunk/boinc/; revision=8346
This commit is contained in:
Reinhard Prix 2005-09-30 00:19:42 +00:00
parent 43e4671f97
commit df4bc39cad
3 changed files with 29 additions and 26 deletions

View File

@ -9,7 +9,7 @@ ACLOCAL_AMFLAGS = -I m4
API_SUBDIRS = api lib zip
if ENABLE_SERVER
SERVER_SUBDIRS = db tools test py sched apps
SERVER_SUBDIRS = db test py sched apps tools
endif
if ENABLE_CLIENT
@ -37,7 +37,3 @@ EXTRA_DIST = \
dist-hook:
rm -rf `find $(distdir) -name .backup -prune -o -name '*~' -o -name CVS`
# cd $(distdir) && ./_autosetup
# convenience target
client-bin:
cd client && make client-bin client-bin-gz

View File

@ -12383,6 +12383,16 @@ Reinhard 29 Sept 2005
- removed redundant configure-switch 'disable-static-linkage'
- made '--enable-client-release' work as advertised [default=OFF!!]
- make sure that only benchmark-sources have hardcoded -O3 applied to them.
- removed spurious dependencies in tool to avoid pointless re-linking
configure.ac
Makefile.am
client/
Makefile.am
m4/
sah_check_lib.m4
tools/
Makefile.am
Rom 29 Sept 2005
- Account not found page should show a finish button instead of a next
@ -12390,3 +12400,4 @@ Rom 29 Sept 2005
clientgui/wizards/
WizardAttachProject.cpp

View File

@ -11,23 +11,19 @@ EXTRA_DIST = make_project add xadd update_versions dbcheck_files_exist upgrade
create_work_SOURCES = \
create_work.C
create_work_DEPENDENCIES = $(LIBRSA) $(LIBBOINC) $(LIBSCHED)
create_work_LDADD = $(SCHED_LIB) $(BOINC_LIB) $(RSA_LIBS) $(MYSQL_LIBS)
sign_executable_SOURCES = \
sign_executable.C
sign_executable_DEPENDENCIES = $(LIBRSA) $(LIBBOINC)
sign_executable_LDADD = $(BOINC_LIB) $(RSA_LIBS) $(MYSQL_LIBS)
dir_hier_path_SOURCES = \
dir_hier_path.C
dir_hier_path_DEPENDENCIES = $(LIBBOINC) $(LIBSCHED)
dir_hier_path_LDADD = $(SCHED_LIB) $(BOINC_LIB)
dir_hier_move_SOURCES = \
dir_hier_move.C
dir_hier_move_DEPENDENCIES = $(LIBBOINC) $(LIBSCHED)
dir_hier_move_LDADD = $(SCHED_LIB) $(BOINC_LIB)