[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.3

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:
1.3     ! ohara      10: ox_gsl: ox_gsl.o call_gsl.o ox_eval.o mysig.o
        !            11:        ${CC} ${CFLAGS} -o ox_gsl ox_gsl.o call_gsl.o ox_eval.o mysig.o ${LIBS}
1.1       takayama   12:
1.3     ! ohara      13: .c.o: ox_gsl.h mysig.h
1.1       takayama   14:        ${CC} ${CFLAGS} -c -g $<
                     15:
                     16: clean:
                     17:        rm -f *.o *~ ox_gsl
                     18: distclean: clean
                     19:        rm -f .configure_done
                     20:
1.3     ! ohara      21: # $OpenXM: OpenXM/src/ox_gsl/Makefile.in,v 1.2 2018/04/07 04:39:20 ohara Exp $

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