Annotation of elwix/tools/oldlzma/Makefile, revision 1.1

1.1     ! misho       1: BINDIR?=/usr/bin/
        !             2: 
        !             3: CFLAGS+= -I${.CURDIR}/SRC
        !             4: CXXFLAGS+= -I${.CURDIR}/SRC
        !             5: NO_MAN=
        !             6: PROG_CXX=oldlzma
        !             7: 
        !             8: .PATH: ${.CURDIR}/SRC/7zip/Compress/LZMA_Alone
        !             9: SRCS=LzmaAlone.cpp LzmaBench.cpp LzmaRam.cpp LzmaRamDecode.c
        !            10: 
        !            11: .PATH: ${.CURDIR}/SRC/7zip/Compress/LZMA_C
        !            12: SRCS+=LzmaDecode.c
        !            13: 
        !            14: .PATH: ${.CURDIR}/SRC/7zip/Compress/Branch
        !            15: SRCS+=BranchX86.c
        !            16: 
        !            17: .PATH: ${.CURDIR}/SRC/7zip/Compress/LZMA
        !            18: SRCS+=LZMADecoder.cpp
        !            19: SRCS+=LZMAEncoder.cpp
        !            20: 
        !            21: .PATH: ${.CURDIR}/SRC/7zip/Compress/LZ
        !            22: SRCS+=LZInWindow.cpp
        !            23: SRCS+=LZOutWindow.cpp
        !            24: 
        !            25: .PATH: ${.CURDIR}/SRC/7zip/Compress/RangeCoder
        !            26: SRCS+=RangeCoderBit.cpp
        !            27: 
        !            28: .PATH: ${.CURDIR}/SRC/7zip/Common
        !            29: SRCS+=InBuffer.cpp
        !            30: SRCS+=OutBuffer.cpp
        !            31: SRCS+=FileStreams.cpp
        !            32: 
        !            33: .PATH: ${.CURDIR}/SRC/Common
        !            34: SRCS+=Alloc.cpp
        !            35: SRCS+=C_FileIO.cpp
        !            36: SRCS+=CommandLineParser.cpp
        !            37: SRCS+=CRC.cpp
        !            38: SRCS+=String.cpp
        !            39: SRCS+=StringConvert.cpp
        !            40: SRCS+=StringToInt.cpp
        !            41: SRCS+=Vector.cpp
        !            42: 
        !            43: .include <bsd.prog.mk>

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