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_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 # $OpenXM: OpenXM/src/ox_gsl/Makefile.in,v 1.5 2019/10/21 05:37:20 takayama Exp $