[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_math / lib

Annotation of OpenXM/src/ox_math/lib/Makefile, Revision 1.1

1.1     ! ohara       1: # $OpenXM$
        !             2:
        !             3: OpenXM_HOME = ../../..
        !             4: LIBRARIES = oxclient.m beta.m primadec.m
        !             5:
        !             6: all:
        !             7:
        !             8: install: install-binary
        !             9:
        !            10: install-binary: ${LIBRARIES}
        !            11:        -mkdir -p ${OpenXM_HOME}/lib/math
        !            12:        cp -f ${LIBRARIES} ${OpenXM_HOME}/lib/math
        !            13:
        !            14: install-for-debug: ${LIBRARIES}
        !            15:        -mkdir -p ${OpenXM_HOME}/lib/math
        !            16:        for i in ${LIBRARIES}; do \
        !            17:                ln -s -f ../../src/ox_math/lib/$$i ${OpenXM_HOME}/lib/math; \
        !            18:        done
        !            19:
        !            20: clean-for-debug:
        !            21:        -for i in ${OpenXM_HOME}/lib/math/*; do \
        !            22:                test -L $$i && rm -f $$i; \
        !            23:        done
        !            24:
        !            25: clean:
        !            26:        -rm -f *~

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