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

Diff for /OpenXM/src/ox_gsl/Makefile.in between version 1.1 and 1.7

version 1.1, 2018/04/07 03:30:50 version 1.7, 2021/03/10 06:51:57
Line 1 
Line 1 
 prefix = @prefix@  prefix = @prefix@
 CFLAGS = @CFLAGS@ -I /usr/local/include  CFLAGS = @CFLAGS@ `gsl-config --cflags`
 LIBS = @LIBS@  LIBS = @LIBS@ `gsl-config --libs`
 LN_S = @LN_S@  LN_S = @LN_S@
 TARGET = @TARGET@  TARGET = @TARGET@
 CC = @CC@  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}  all: ${TARGET}
   
 ox_gsl: ox_gsl.o call_gsl.o ox_eval.o  ox_gsl: ox_gsl.o ${CALL_GSL} ox_eval.o mysig.o
         ${CC} ${CFLAGS} -o ox_gsl ox_gsl.o call_gsl.o ox_eval.o ${LIBS}          ${CC} ${CFLAGS} -o ox_gsl ox_gsl.o ${CALL_GSL} ox_eval.o mysig.o ${LIBS}
   
 .c.o: ox_gsl.h  .c.o: ox_gsl.h mysig.h ${CALL_GSL_H}
         ${CC} ${CFLAGS} -c -g $<          ${CC} ${CFLAGS} -c -g $<
   
 clean:  clean:
Line 18  clean:
Line 21  clean:
 distclean: clean  distclean: clean
         rm -f .configure_done          rm -f .configure_done
   
 # $OpenXM$  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 $

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.7

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>