mirror of https://github.com/BOINC/boinc.git
removed spurious dependencies in tool to avoid pointless re-linking
svn path=/trunk/boinc/; revision=8346
This commit is contained in:
parent
43e4671f97
commit
df4bc39cad
|
@ -9,7 +9,7 @@ ACLOCAL_AMFLAGS = -I m4
|
||||||
API_SUBDIRS = api lib zip
|
API_SUBDIRS = api lib zip
|
||||||
|
|
||||||
if ENABLE_SERVER
|
if ENABLE_SERVER
|
||||||
SERVER_SUBDIRS = db tools test py sched apps
|
SERVER_SUBDIRS = db test py sched apps tools
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ENABLE_CLIENT
|
if ENABLE_CLIENT
|
||||||
|
@ -37,7 +37,3 @@ EXTRA_DIST = \
|
||||||
dist-hook:
|
dist-hook:
|
||||||
rm -rf `find $(distdir) -name .backup -prune -o -name '*~' -o -name CVS`
|
rm -rf `find $(distdir) -name .backup -prune -o -name '*~' -o -name CVS`
|
||||||
# cd $(distdir) && ./_autosetup
|
# cd $(distdir) && ./_autosetup
|
||||||
|
|
||||||
# convenience target
|
|
||||||
client-bin:
|
|
||||||
cd client && make client-bin client-bin-gz
|
|
||||||
|
|
|
@ -12383,6 +12383,16 @@ Reinhard 29 Sept 2005
|
||||||
- removed redundant configure-switch 'disable-static-linkage'
|
- removed redundant configure-switch 'disable-static-linkage'
|
||||||
- made '--enable-client-release' work as advertised [default=OFF!!]
|
- made '--enable-client-release' work as advertised [default=OFF!!]
|
||||||
- make sure that only benchmark-sources have hardcoded -O3 applied to them.
|
- 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
|
Rom 29 Sept 2005
|
||||||
- Account not found page should show a finish button instead of a next
|
- Account not found page should show a finish button instead of a next
|
||||||
|
@ -12390,3 +12400,4 @@ Rom 29 Sept 2005
|
||||||
|
|
||||||
clientgui/wizards/
|
clientgui/wizards/
|
||||||
WizardAttachProject.cpp
|
WizardAttachProject.cpp
|
||||||
|
|
||||||
|
|
|
@ -11,23 +11,19 @@ EXTRA_DIST = make_project add xadd update_versions dbcheck_files_exist upgrade
|
||||||
create_work_SOURCES = \
|
create_work_SOURCES = \
|
||||||
create_work.C
|
create_work.C
|
||||||
|
|
||||||
create_work_DEPENDENCIES = $(LIBRSA) $(LIBBOINC) $(LIBSCHED)
|
|
||||||
create_work_LDADD = $(SCHED_LIB) $(BOINC_LIB) $(RSA_LIBS) $(MYSQL_LIBS)
|
create_work_LDADD = $(SCHED_LIB) $(BOINC_LIB) $(RSA_LIBS) $(MYSQL_LIBS)
|
||||||
|
|
||||||
sign_executable_SOURCES = \
|
sign_executable_SOURCES = \
|
||||||
sign_executable.C
|
sign_executable.C
|
||||||
|
|
||||||
sign_executable_DEPENDENCIES = $(LIBRSA) $(LIBBOINC)
|
|
||||||
sign_executable_LDADD = $(BOINC_LIB) $(RSA_LIBS) $(MYSQL_LIBS)
|
sign_executable_LDADD = $(BOINC_LIB) $(RSA_LIBS) $(MYSQL_LIBS)
|
||||||
|
|
||||||
dir_hier_path_SOURCES = \
|
dir_hier_path_SOURCES = \
|
||||||
dir_hier_path.C
|
dir_hier_path.C
|
||||||
|
|
||||||
dir_hier_path_DEPENDENCIES = $(LIBBOINC) $(LIBSCHED)
|
|
||||||
dir_hier_path_LDADD = $(SCHED_LIB) $(BOINC_LIB)
|
dir_hier_path_LDADD = $(SCHED_LIB) $(BOINC_LIB)
|
||||||
|
|
||||||
dir_hier_move_SOURCES = \
|
dir_hier_move_SOURCES = \
|
||||||
dir_hier_move.C
|
dir_hier_move.C
|
||||||
|
|
||||||
dir_hier_move_DEPENDENCIES = $(LIBBOINC) $(LIBSCHED)
|
|
||||||
dir_hier_move_LDADD = $(SCHED_LIB) $(BOINC_LIB)
|
dir_hier_move_LDADD = $(SCHED_LIB) $(BOINC_LIB)
|
||||||
|
|
Loading…
Reference in New Issue