2dadf411fa
Re-introduce crc64 for dedup blocks to avoid wasted memcpy-s Restructe block array to be an array of pointers allocated on demand Fix a corner case issue when splitting chunks at a dedup boundary
129 lines
4 KiB
Makefile
129 lines
4 KiB
Makefile
#
|
|
# This file is a part of Pcompress, a chunked parallel multi-
|
|
# algorithm lossless compression and decompression program.
|
|
#
|
|
# Copyright (C) 2012 Moinak Ghosh. All rights reserved.
|
|
# Use is subject to license terms.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 3 of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# moinakg@belenix.org, http://moinakg.wordpress.com/
|
|
#
|
|
# This program includes partly-modified public domain source
|
|
# code from the LZMA SDK: http://www.7-zip.org/sdk.html
|
|
#
|
|
|
|
PROG= pcompress
|
|
MAINSRCS = main.c utils.c allocator.c zlib_compress.c bzip2_compress.c \
|
|
lzma_compress.c ppmd_compress.c adaptive_compress.c lzfx_compress.c \
|
|
lz4_compress.c none_compress.c
|
|
MAINHDRS = allocator.h pcompress.h utils.h
|
|
MAINOBJS = $(MAINSRCS:.c=.o)
|
|
|
|
RABINSRCS = rabin/rabin_polynomial.c
|
|
RABINHDRS = rabin/rabin_polynomial.h utils.h
|
|
RABINOBJS = $(RABINSRCS:.c=.o)
|
|
|
|
BSDIFFSRCS = bsdiff/bsdiff.c bsdiff/bspatch.c bsdiff/rle_encoder.c
|
|
BSDIFFHDRS = bsdiff/bscommon.h utils.h allocator.h
|
|
BSDIFFOBJS = $(BSDIFFSRCS:.c=.o)
|
|
|
|
LZMASRCS = lzma/LzmaEnc.c lzma/LzFind.c lzma/LzmaDec.c
|
|
LZMAHDRS = lzma/CpuArch.h lzma/LzFind.h lzma/LzmaEnc.h lzma/Types.h \
|
|
lzma/LzHash.h lzma/LzmaDec.h utils.h
|
|
LZMAOBJS = $(LZMASRCS:.c=.o)
|
|
|
|
LZFXSRCS = lzfx/lzfx.c
|
|
LZFXHDRS = lzfx/lzfx.h
|
|
LZFXOBJS = $(LZFXSRCS:.c=.o)
|
|
|
|
LZ4SRCS = lz4/lz4.c lz4/lz4hc.c
|
|
LZ4HDRS = lz4/lz4.h lz4/lz4hc.h
|
|
LZ4OBJS = $(LZ4SRCS:.c=.o)
|
|
|
|
PPMDSRCS = lzma/Ppmd8.c lzma/Ppmd8Enc.c lzma/Ppmd8Dec.c
|
|
PPMDHDRS = lzma/Ppmd.h lzma/Ppmd8.h
|
|
PPMDOBJS = $(PPMDSRCS:.c=.o)
|
|
|
|
CRCSRCS = lzma/crc64_fast.c lzma/crc64_table.c
|
|
CRCHDRS = lzma/crc64_table_le.h lzma/crc64_table_be.h lzma/crc_macros.h
|
|
CRCOBJS = $(CRCSRCS:.c=.o)
|
|
|
|
BAKFILES = *~ lzma/*~ lzfx/*~ lz4/*~ rabin/*~ bsdiff/*~
|
|
|
|
RM = rm -f
|
|
CPPFLAGS = -I. -I./lzma -I./lzfx -I./lz4 -I./rabin -I./bsdiff -D_7ZIP_ST -DNODEFAULT_PROPS \
|
|
-DFILE_OFFSET_BITS=64 -D_REENTRANT -D__USE_SSE_INTRIN__ -D_LZMA_PROB32
|
|
VEC_FLAGS = -ftree-vectorize
|
|
LOOP_OPTFLAGS = $(VEC_FLAGS) -floop-interchange -floop-block
|
|
LDLIBS = -ldl -lbz2 $(ZLIB_DIR) -lz -lm
|
|
|
|
ifdef DEBUG
|
|
LINK = g++ -m64 -pthread -msse3
|
|
COMPILE = gcc -m64 -g -msse3 -c
|
|
COMPILE_cpp = g++ -m64 -g -msse3 -c
|
|
VEC_FLAGS =
|
|
LOOP_OPTFLAGS =
|
|
GEN_OPT = -O -fno-omit-frame-pointer
|
|
RABIN_OPT = -O -fno-omit-frame-pointer
|
|
else
|
|
GEN_OPT = -O3
|
|
RABIN_OPT = -O2
|
|
LINK = g++ -m64 -pthread -msse3
|
|
COMPILE = gcc -m64 -msse3 -c
|
|
COMPILE_cpp = g++ -m64 -msse3 -c
|
|
CPPFLAGS += -DNDEBUG
|
|
endif
|
|
|
|
ifdef DEBUG_NO_SLAB
|
|
CPPFLAGS += -DDEBUG_NO_SLAB
|
|
endif
|
|
|
|
ifdef DEBUG_STATS
|
|
CPPFLAGS += -DDEBUG_STATS
|
|
endif
|
|
|
|
all: $(PROG)
|
|
|
|
$(LZMAOBJS): $(LZMASRCS) $(LZMAHDRS)
|
|
$(COMPILE) $(GEN_OPT) $(CPPFLAGS) $(@:.o=.c) -o $@
|
|
|
|
$(CRCOBJS): $(CRCSRCS) $(CRCHDRS)
|
|
$(COMPILE) $(GEN_OPT) $(VEC_FLAGS) $(CPPFLAGS) $(@:.o=.c) -o $@
|
|
|
|
$(PPMDOBJS): $(PPMDSRCS) $(PPMDHDRS)
|
|
$(COMPILE) $(GEN_OPT) $(VEC_FLAGS) $(CPPFLAGS) $(@:.o=.c) -o $@
|
|
|
|
$(RABINOBJS): $(RABINSRCS) $(RABINHDRS)
|
|
$(COMPILE) $(RABIN_OPT) $(VEC_FLAGS) $(CPPFLAGS) $(@:.o=.c) -o $@
|
|
|
|
$(BSDIFFOBJS): $(BSDIFFSRCS) $(BSDIFFHDRS)
|
|
$(COMPILE) $(GEN_OPT) $(VEC_FLAGS) $(CPPFLAGS) $(@:.o=.c) -o $@
|
|
|
|
$(LZFXOBJS): $(LZFXSRCS) $(LZFXHDRS)
|
|
$(COMPILE) $(GEN_OPT) $(VEC_FLAGS) $(CPPFLAGS) $(@:.o=.c) -o $@
|
|
|
|
$(LZ4OBJS): $(LZ4SRCS) $(LZ4HDRS)
|
|
$(COMPILE) $(GEN_OPT) $(VEC_FLAGS) $(CPPFLAGS) $(@:.o=.c) -o $@
|
|
|
|
$(MAINOBJS): $(MAINSRCS) $(MAINHDRS)
|
|
$(COMPILE) $(GEN_OPT) $(LOOP_OPTFLAGS) $(CPPFLAGS) $(@:.o=.c) -o $@
|
|
|
|
$(PROG): $(MAINOBJS) $(LZMAOBJS) $(PPMDOBJS) $(LZFXOBJS) $(LZ4OBJS) \
|
|
$(CRCOBJS) $(RABINOBJS) $(BSDIFFOBJS)
|
|
$(LINK) -o $@ $(MAINOBJS) $(LZMAOBJS) $(PPMDOBJS) $(CRCOBJS) \
|
|
$(LZFXOBJS) $(LZ4OBJS) $(RABINOBJS) $(BSDIFFOBJS) \
|
|
$(LDLIBS)
|
|
|
|
clean:
|
|
$(RM) $(PROG) $(MAINOBJS) $(LZMAOBJS) $(PPMDOBJS) $(CRCOBJS) $(LZFXOBJS) $(LZ4OBJS) \
|
|
$(RABINOBJS) $(BSDIFFOBJS) $(BAKFILES)
|
|
|