[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.7, Wed Mar 10 06:51:57 2021 UTC (3 years, 1 month ago) by takayama
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +3 -3 lines

gsl-config is used to set flags.

prefix = @prefix@
CFLAGS = @CFLAGS@ `gsl-config --cflags`
LIBS = @LIBS@ `gsl-config --libs`
LN_S = @LN_S@
TARGET = @TARGET@
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}

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

link:
	ln -s ../asir-contrib/packages/src/gsl.rr .

# $OpenXM: OpenXM/src/ox_gsl/Makefile.in,v 1.7 2021/03/10 06:51:57 takayama Exp $