2017-04-11 21:38:56 +00:00
|
|
|
# ################################################################
|
|
|
|
# Copyright (c) 2017-present, Facebook, Inc.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
2017-08-31 18:24:54 +00:00
|
|
|
# This source code is licensed under both the BSD-style license (found in the
|
|
|
|
# LICENSE file in the root directory of this source tree) and the GPLv2 (found
|
|
|
|
# in the COPYING file in the root directory of this source tree).
|
2017-04-11 21:38:56 +00:00
|
|
|
# ################################################################
|
|
|
|
|
|
|
|
# This Makefile presumes libzstd is built, using `make` in / or /lib/
|
|
|
|
|
2017-04-28 19:17:09 +00:00
|
|
|
LDFLAGS += ../../../lib/libzstd.a
|
2017-04-11 21:38:56 +00:00
|
|
|
CPPFLAGS += -I../ -I../../../lib -I../../../lib/common
|
|
|
|
|
2017-04-14 00:47:55 +00:00
|
|
|
CFLAGS ?= -O3
|
2017-04-11 21:38:56 +00:00
|
|
|
CFLAGS += -g
|
|
|
|
|
|
|
|
SEEKABLE_OBJS = ../zstdseek_compress.c ../zstdseek_decompress.c
|
|
|
|
|
|
|
|
.PHONY: default all clean test
|
|
|
|
|
|
|
|
default: all
|
|
|
|
|
2017-04-21 19:23:06 +00:00
|
|
|
all: seekable_compression seekable_decompression parallel_processing
|
2017-04-11 21:38:56 +00:00
|
|
|
|
2017-04-12 17:57:38 +00:00
|
|
|
seekable_compression : seekable_compression.c $(SEEKABLE_OBJS)
|
|
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) $^ $(LDFLAGS) -o $@
|
2017-04-11 21:38:56 +00:00
|
|
|
|
2017-04-12 17:57:38 +00:00
|
|
|
seekable_decompression : seekable_decompression.c $(SEEKABLE_OBJS)
|
|
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) $^ $(LDFLAGS) -o $@
|
2017-04-11 21:38:56 +00:00
|
|
|
|
2017-04-21 19:23:06 +00:00
|
|
|
parallel_processing : parallel_processing.c $(SEEKABLE_OBJS)
|
|
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) $^ $(LDFLAGS) -o $@ -pthread
|
|
|
|
|
2017-04-28 19:17:09 +00:00
|
|
|
parallel_compression : parallel_compression.c $(SEEKABLE_OBJS)
|
|
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) $^ $(LDFLAGS) -o $@ -pthread
|
|
|
|
|
2017-04-11 21:38:56 +00:00
|
|
|
clean:
|
|
|
|
@rm -f core *.o tmp* result* *.zst \
|
2017-04-28 19:17:09 +00:00
|
|
|
seekable_compression seekable_decompression \
|
|
|
|
parallel_processing parallel_compression
|
2017-04-11 21:38:56 +00:00
|
|
|
@echo Cleaning completed
|