mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=66
This commit is contained in:
parent
cb13c3cecd
commit
2e450907a5
|
@ -3,12 +3,18 @@ topsrcdir = @top_srcdir@
|
|||
srcdir = @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:
|
||||
cd db; make; cd ..; \
|
||||
cd lib; make; cd ..; \
|
||||
cd api; 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 tools; make; cd ..;
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ FEEDER_OBJS = \
|
|||
|
||||
MYSQL_DIR = /usr/local/mysql/lib
|
||||
MYSQL_LIBS = \
|
||||
-L$(MYSQL_DIR) \
|
||||
-L$(MYSQL_DIR) -L/sw/lib/mysql \
|
||||
-lmysqlclient -L/usr/local/lib -lz \
|
||||
-lm $(NETLIBS)
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ all: $(PROGS) $(OBJS)
|
|||
MYSQL_DIR = /usr/local/mysql/lib
|
||||
MYSQL_LIBS = \
|
||||
-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)
|
||||
|
||||
LIBS = \
|
||||
|
|
Loading…
Reference in New Issue