=================================================================== RCS file: /home/cvs/OpenXM/src/ox_gsl/Attic/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- OpenXM/src/ox_gsl/Attic/Makefile 2018/03/29 05:47:11 1.1 +++ OpenXM/src/ox_gsl/Attic/Makefile 2018/03/29 11:52:17 1.2 @@ -1,13 +1,14 @@ -MYLIB=../../lib -MYINCLUDE=../../include +MYLIB=-L../../lib -L/usr/local/lib +MYINCLUDE=-I../../include -I/usr/local/include all: ox_gsl -ox_gsl: ox_gsl.o - ${CC} -o ox_gsl ox_gsl.o -L${MYLIB} -lox -lgmp -lgc +ox_gsl: ox_gsl.o call_gsl.o + ${CC} -o ox_gsl ox_gsl.o call_gsl.o ${MYLIB} -lgsl -lox -lgmp -lgc -.c.o: - ${CC} -I${MYINCLUDE} -c -g $< +.c.o: ox_gsl.h + ${CC} ${MYINCLUDE} -c -g $< clean: rm -f *.o *~ ox_gsl +# $OpenXM$