[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.2, Sat Apr 7 04:39:20 2018 UTC (6 years, 1 month ago) by ohara
Branch: MAIN
Changes since 1.1: +2 -2 lines

Using gsl-config in configure.

prefix = @prefix@
CFLAGS = @CFLAGS@
LIBS = @LIBS@
LN_S = @LN_S@
TARGET = @TARGET@
CC = @CC@

all: ${TARGET}

ox_gsl: ox_gsl.o call_gsl.o ox_eval.o
	${CC} ${CFLAGS} -o ox_gsl ox_gsl.o call_gsl.o ox_eval.o ${LIBS}

.c.o: ox_gsl.h
	${CC} ${CFLAGS} -c -g $<

clean:
	rm -f *.o *~ ox_gsl  
distclean: clean
	rm -f .configure_done

# $OpenXM: OpenXM/src/ox_gsl/Makefile.in,v 1.2 2018/04/07 04:39:20 ohara Exp $