Re: [R] Building package on Windows: No rule to make target '-llapack'

2004-06-10 Thread Zhu Wang
On Thu, 2004-06-10 at 06:40, Prof Brian Ripley wrote: > On Wed, 9 Jun 2004, Zhu Wang wrote: > > > I have a problem to build a package on Windows XP while there is no > > problem on Linux. The Makefile is something like: > > There would be a problem on Linux, if that Makefile were used. I suspect

Re: [R] Building package on Windows: No rule to make target '-llapack'

2004-06-09 Thread Prof Brian Ripley
On Wed, 9 Jun 2004, Zhu Wang wrote: > I have a problem to build a package on Windows XP while there is no > problem on Linux. The Makefile is something like: There would be a problem on Linux, if that Makefile were used. I suspect it is not used. > ### > LIBNAME=cts > > PKG_LIBS = $(LA

Re: [R] Building package on Windows: No rule to make target '-llapack'

2004-06-09 Thread A.J. Rossini
Zhu Wang <[EMAIL PROTECTED]> writes: > Now I think maybe two problems: one is that maybe I do not have Lapack and Blas > installed I think this definitely needs to be solved. -- [EMAIL PROTECTED]http://www.analytics.washington.edu/ Biomedical and Health Informatics University of

[R] Building package on Windows: No rule to make target '-llapack'

2004-06-09 Thread Zhu Wang
Dear all, I have a problem to build a package on Windows XP while there is no problem on Linux. The Makefile is something like: ### LIBNAME=cts PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) OBJS=file1.o ... file20.o -llapack -lblas $(LIBNAME)$(SHLIB_EXT): $(OBJS) $(SHLIB_LD)