2017-04-11 21:38:56 +00:00
|
|
|
# ################################################################
|
|
|
|
# Copyright (c) 2017-present, Facebook, Inc.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# This source code is licensed under the BSD-style license found in the
|
|
|
|
# LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
# of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
# ################################################################
|
|
|
|
|
|
|
|
# This Makefile presumes libzstd is built, using `make` in / or /lib/
|
|
|
|
|
|
|
|
LDFLAGS += -L../../../lib/ -lzstd
|
|
|
|
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
|
|
|
|
|
|
|
|
all: seekable_compression seekable_decompression
|
|
|
|
|
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
|
|
|
|
|
|
|
clean:
|
|
|
|
@rm -f core *.o tmp* result* *.zst \
|
|
|
|
seekable_compression seekable_decompression
|
|
|
|
@echo Cleaning completed
|