Annotation of libaitcfg/debian/Makefile.in, revision 1.2

1.2     ! misho       1: prefix = @prefix@
        !             2: exec_prefix = @exec_prefix@
        !             3: includedir = @includedir@
        !             4: libdir = @libdir@
        !             5: 
        !             6: PACKAGE_NAME = @PACKAGE_NAME@
        !             7: PACKAGE_VERSION = @PACKAGE_VERSION@
        !             8: PACKAGE_ARCH = @target_cpu@
        !             9: PACKAGE_REV = 1
        !            10: 
        !            11: INSTALL = @INSTALL@
        !            12: 
        !            13: INC = ../inc
        !            14: LIB = ../lib
        !            15: 
        !            16: LIBSO = ${PACKAGE_NAME}.so
        !            17: 
        !            18: DEBNAME=${PACKAGE_NAME}_${PACKAGE_VERSION}-${PACKAGE_REV}_${PACKAGE_ARCH}
        !            19: 
        !            20: all: depend
        !            21:        dpkg -b ${DEBNAME}
        !            22: 
        !            23: depend:
        !            24:        mkdir -p ${DEBNAME}/DEBIAN
        !            25:        cp control ${DEBNAME}/DEBIAN
        !            26:        mkdir -p ${DEBNAME}${includedir}
        !            27:        mkdir -p ${DEBNAME}${libdir}
        !            28:        ${INSTALL} ${INC}/aitcfg.h ${DEBNAME}${includedir}
        !            29:        ${INSTALL} ${INC}/aitpwd.h ${DEBNAME}${includedir}
        !            30:        ${INSTALL} ${LIB}/${LIBSO} ${DEBNAME}${libdir}
        !            31:        ln -sf ${LIBSO} ${DEBNAME}${libdir}/${LIBSO}.${PACKAGE_VERSION}
        !            32: 
        !            33: clean:
        !            34:        rm -rf *~
        !            35:        rm -rf ${DEBNAME}
        !            36:        rm -rf ${DEBNAME}.deb
        !            37: 
        !            38: install:
        !            39: 

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