[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.5, Mon Oct 21 05:37:20 2019 UTC (4 years, 6 months ago) by takayama
Branch: MAIN
Changes since 1.4: +4 -3 lines

Added the incomplete gamma function \Gamma(a,x)
[1856] ox_cmo_rpc(Pid,"gsl_sf_gamma_inc",deval(1/2),deval(2));
0
[1857] ox_pop_cmo(Pid);
0.0806471

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 $