[BACK]Return to Makefile.in CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_gsl

File: [local] / OpenXM / src / ox_gsl / Makefile.in (download)

Revision 1.6, Wed Oct 23 07:00:43 2019 UTC (4 years, 6 months ago) by takayama
Branch: MAIN
Changes since 1.5: +5 -2 lines

gsl.rr is the lapper of ox_gsl.
Example.
 Ans=gsl.eigen_nonsymmv(M=matrix_list_to_matrix([[1,0],[3,4]]));

calls gsl_eigen_nonsymmv() of GSL.
It returns a list of (complex) eigenvalues and eigenvectors.

It is still in a testing mode and ox_gsl is loaded from OpenXM/src/ox_gsl/ox_gsl

prefix = @prefix@
CFLAGS = @CFLAGS@
LIBS = @LIBS@
LN_S = @LN_S@
TARGET = @TARGET@
CC = @CC@

CALL_GSL=call_gsl.o call_gsl_ode.o call_gsl_sf.o call_gsl_eigen.o
CALL_GSL_H=call_gsl.h call_gsl_sf.h

all: ${TARGET}

ox_gsl: ox_gsl.o ${CALL_GSL} ox_eval.o mysig.o
	${CC} ${CFLAGS} -o ox_gsl ox_gsl.o ${CALL_GSL} ox_eval.o mysig.o ${LIBS}

.c.o: ox_gsl.h mysig.h ${CALL_GSL_H}
	${CC} ${CFLAGS} -c -g $<

clean:
	rm -f *.o *~ ox_gsl  
distclean: clean
	rm -f .configure_done

link:
	ln -s ../asir-contrib/packages/src/gsl.rr .

# $OpenXM: OpenXM/src/ox_gsl/Makefile.in,v 1.6 2019/10/23 07:00:43 takayama Exp $