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

Annotation of OpenXM/src/ox_gsl/Makefile.in, Revision 1.2

1.1       takayama    1: prefix = @prefix@
1.2     ! ohara       2: CFLAGS = @CFLAGS@
1.1       takayama    3: LIBS = @LIBS@
                      4: LN_S = @LN_S@
                      5: TARGET = @TARGET@
                      6: CC = @CC@
                      7:
                      8: all: ${TARGET}
                      9:
                     10: ox_gsl: ox_gsl.o call_gsl.o ox_eval.o
                     11:        ${CC} ${CFLAGS} -o ox_gsl ox_gsl.o call_gsl.o ox_eval.o ${LIBS}
                     12:
                     13: .c.o: ox_gsl.h
                     14:        ${CC} ${CFLAGS} -c -g $<
                     15:
                     16: clean:
                     17:        rm -f *.o *~ ox_gsl
                     18: distclean: clean
                     19:        rm -f .configure_done
                     20:
1.2     ! ohara      21: # $OpenXM: OpenXM/src/ox_gsl/Makefile.in,v 1.1 2018/04/07 03:30:50 takayama Exp $

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