=================================================================== RCS file: /home/cvs/OpenXM/src/ox_gsl/Makefile.in,v retrieving revision 1.4 retrieving revision 1.7 diff -u -p -r1.4 -r1.7 --- OpenXM/src/ox_gsl/Makefile.in 2018/06/08 00:03:43 1.4 +++ OpenXM/src/ox_gsl/Makefile.in 2021/03/10 06:51:57 1.7 @@ -1,18 +1,19 @@ prefix = @prefix@ -CFLAGS = @CFLAGS@ -LIBS = @LIBS@ +CFLAGS = @CFLAGS@ `gsl-config --cflags` +LIBS = @LIBS@ `gsl-config --libs` LN_S = @LN_S@ TARGET = @TARGET@ CC = @CC@ -CALL_GSL=call_gsl.o call_gsl_ode.o +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 +.c.o: ox_gsl.h mysig.h ${CALL_GSL_H} ${CC} ${CFLAGS} -c -g $< clean: @@ -20,4 +21,7 @@ clean: distclean: clean rm -f .configure_done -# $OpenXM: OpenXM/src/ox_gsl/Makefile.in,v 1.3 2018/06/04 06:39:26 ohara Exp $ +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 $