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

Annotation of OpenXM/src/ox_python/Makefile.in, Revision 1.4

1.1       takayama    1: prefix = @prefix@
1.2       takayama    2: CFLAGS = @CFLAGS@ -fPIE
1.1       takayama    3: LIBS = @LIBS@
                      4: LN_S = @LN_S@
                      5: TARGET = @TARGET@
                      6: CC = @CC@
1.4     ! takayama    7: LIB_CONFIG = @LIB_CONFIG@
1.1       takayama    8: all: ${TARGET}
                      9:
                     10: ox_python: ox_python.o mysig.o
1.4     ! takayama   11:        ${CC} ${CFLAGS} `python3-config --cflags` -o ox_python ox_python.o mysig.o `${LIB_CONFIG}` ${LIBS}
1.1       takayama   12:
                     13: .c.o: ox_python.h mysig.h
1.2       takayama   14:        ${CC} ${CFLAGS} `python3-config --cflags` -c -g $<
1.1       takayama   15:
                     16: clean:
                     17:        rm -f *.o *~ ox_python
                     18: distclean: clean
                     19:        rm -f .configure_done
                     20:
1.2       takayama   21: install: all
                     22:        install ox_python ../../bin
                     23: install-for-debug: all
                     24:        rm -f ../../bin/ox_python
                     25:        (cd ../../bin ; ln -s ../src/ox_python/ox_python .)
                     26:
1.4     ! takayama   27: # $OpenXM: OpenXM/src/ox_python/Makefile.in,v 1.3 2022/01/03 05:11:15 takayama Exp $

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