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

Diff for /OpenXM/src/ox_gsl/Attic/Makefile between version 1.2 and 1.3

version 1.2, 2018/03/29 11:52:17 version 1.3, 2018/03/30 04:43:16
Line 1 
Line 1 
 MYLIB=-L../../lib -L/usr/local/lib  MYLIB=-L../../lib -L/usr/local/lib
 MYINCLUDE=-I../../include -I/usr/local/include  MYINCLUDE=-I../../include -I/usr/local/include
   CFLAGS=-Wno-attributes
   #CFLAGS=-Wno-unknown-attributes
 all: ox_gsl  all: ox_gsl
   
 ox_gsl: ox_gsl.o call_gsl.o  ox_gsl: ox_gsl.o call_gsl.o
         ${CC} -o ox_gsl ox_gsl.o call_gsl.o ${MYLIB} -lgsl -lox -lgmp -lgc          ${CC} ${CFLAGS} -o ox_gsl ox_gsl.o call_gsl.o ${MYLIB} -lgsl -lox -lgmp -lgc
   
 .c.o: ox_gsl.h  .c.o: ox_gsl.h
         ${CC} ${MYINCLUDE}  -c -g $<          ${CC} ${CFLAGS} ${MYINCLUDE}  -c -g $<
   
 clean:  clean:
         rm -f *.o *~ ox_gsl          rm -f *.o *~ ox_gsl
   
 # $OpenXM$  # $OpenXM: OpenXM/src/ox_gsl/Makefile,v 1.2 2018/03/29 11:52:17 takayama Exp $

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

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