=================================================================== RCS file: /home/cvs/OpenXM/src/ox_gsl/Makefile.in,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- OpenXM/src/ox_gsl/Makefile.in 2018/06/04 06:39:26 1.3 +++ OpenXM/src/ox_gsl/Makefile.in 2018/06/08 00:03:43 1.4 @@ -5,10 +5,12 @@ LN_S = @LN_S@ TARGET = @TARGET@ CC = @CC@ +CALL_GSL=call_gsl.o call_gsl_ode.o + all: ${TARGET} -ox_gsl: ox_gsl.o call_gsl.o ox_eval.o mysig.o - ${CC} ${CFLAGS} -o ox_gsl ox_gsl.o call_gsl.o ox_eval.o mysig.o ${LIBS} +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 ${CC} ${CFLAGS} -c -g $< @@ -18,4 +20,4 @@ clean: distclean: clean rm -f .configure_done -# $OpenXM: OpenXM/src/ox_gsl/Makefile.in,v 1.2 2018/04/07 04:39:20 ohara Exp $ +# $OpenXM: OpenXM/src/ox_gsl/Makefile.in,v 1.3 2018/06/04 06:39:26 ohara Exp $