[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.1, Sat Apr 7 03:30:50 2018 UTC (6 years, 1 month ago) by takayama
Branch: MAIN

configure script (tested only on MacOS and FreeBSD).

prefix = @prefix@
CFLAGS = @CFLAGS@ -I /usr/local/include
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.1 2018/04/07 03:30:50 takayama Exp $