*** empty log message ***

svn path=/trunk/boinc/; revision=66
This commit is contained in:
Hiram Clawson 2002-05-25 15:30:00 +00:00
parent cb13c3cecd
commit 2e450907a5
3 changed files with 11 additions and 5 deletions

View File

@ -3,12 +3,18 @@ topsrcdir = @top_srcdir@
srcdir = @srcdir@ srcdir = @srcdir@
VPATH = @srcdir@ VPATH = @srcdir@
#
# The ../$(srcdir)/client/configure
# only works when the original configure is relative path
# it doesn't work when it is an absolute path
# This needs to be fixed
#
all: all:
cd db; make; cd ..; \ cd db; make; cd ..; \
cd lib; make; cd ..; \ cd lib; make; cd ..; \
cd api; make; cd ..; \ cd api; make; cd ..; \
cd apps; make; cd ..; \ cd apps; make; cd ..; \
cd client; $(srcdir)/client/configure make; cd ..; \ cd client; ../$(srcdir)/client/configure make; cd ..; \
cd sched; make; cd ..; \ cd sched; make; cd ..; \
cd tools; make; cd ..; cd tools; make; cd ..;

View File

@ -34,8 +34,8 @@ FEEDER_OBJS = \
MYSQL_DIR = /usr/local/mysql/lib MYSQL_DIR = /usr/local/mysql/lib
MYSQL_LIBS = \ MYSQL_LIBS = \
-L$(MYSQL_DIR) \ -L$(MYSQL_DIR) -L/sw/lib/mysql \
-lmysqlclient -L /usr/local/lib -lz \ -lmysqlclient -L/usr/local/lib -lz \
-lm $(NETLIBS) -lm $(NETLIBS)
.C.o: .C.o:

View File

@ -25,8 +25,8 @@ all: $(PROGS) $(OBJS)
MYSQL_DIR = /usr/local/mysql/lib MYSQL_DIR = /usr/local/mysql/lib
MYSQL_LIBS = \ MYSQL_LIBS = \
-L $(MYSQL_DIR) -L /usr/local/lib/mysql \ -L$(MYSQL_DIR) -L/usr/local/lib/mysql \
-lmysqlclient -L /usr/local/lib -lz \ -L/sw/lib/mysql -lmysqlclient -L/usr/local/lib -lz \
-lm $(NETLIBS) -lm $(NETLIBS)
LIBS = \ LIBS = \