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

Annotation of OpenXM/src/polymake/fake/Makefile.in, Revision 1.1

1.1     ! takayama    1: # $OpenXM$
        !             2: #
        !             3: OpenXM_HOME=@prefix@
        !             4: OpenXM_bin=${OpenXM_HOME}/bin
        !             5: OpenXM_include=${OpenXM_HOME}/include
        !             6: OpenXM_lib=${OpenXM_HOME}/lib
        !             7: #
        !             8: OpenXM_HOME_debug=../../..
        !             9: OpenXM_bin_debug=${OpenXM_HOME_debug}/bin
        !            10: OpenXM_include_debug=${OpenXM_HOME_debug}/include
        !            11: OpenXM_lib_debug=${OpenXM_HOME_debug}/lib
        !            12: #
        !            13: CFLAGS= @CFLAGS@ -D_BSD_SOURCE -g
        !            14: RM=rm
        !            15: CC=@CC@
        !            16: LIBS=@LIBS@ -L${OpenXM_lib}
        !            17: PATHFINDER=-lox_pathfinder
        !            18:
        !            19: all : configure  link polymake
        !            20: configure: Makefile
        !            21:
        !            22: Makefile: Makefile.in
        !            23:        (rm -f .configure_done ; ./make-configure)
        !            24:
        !            25: .c.o:
        !            26:        ${CC}  ${CFLAGS} -I${OpenXM_include} -c  $<
        !            27: polymake: fake-polymake.o
        !            28:        ${CC} -o polymake fake-polymake.o
        !            29:
        !            30: link:
        !            31:        ./link.sh
        !            32: install:
        !            33:        install polymake ${OpenXM_bin}
        !            34: clean:
        !            35:        rm -f .*done *.o *~ ${OpenXM_bin}/polymake ${OpenXM_bin_debug}/polymake
        !            36:

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