[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.4

version 1.1, 2018/04/07 03:30:50 version 1.4, 2018/06/08 00:03:43
Line 1 
Line 1 
 prefix = @prefix@  prefix = @prefix@
 CFLAGS = @CFLAGS@ -I /usr/local/include  CFLAGS = @CFLAGS@
 LIBS = @LIBS@  LIBS = @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
   
 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
         ${CC} ${CFLAGS} -c -g $<          ${CC} ${CFLAGS} -c -g $<
   
 clean:  clean:
Line 18  clean:
Line 20  clean:
 distclean: clean  distclean: clean
         rm -f .configure_done          rm -f .configure_done
   
 # $OpenXM$  # $OpenXM: OpenXM/src/ox_gsl/Makefile.in,v 1.3 2018/06/04 06:39:26 ohara Exp $

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

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