mirror of
https://github.com/facebook/zstd.git
synced 2025-03-07 09:26:03 +02:00
``` for f in $(find . \( -path ./.git -o -path ./tests/fuzz/corpora -o -path ./tests/regression/data-cache -o -path ./tests/regression/cache \) -prune -o -type f); do sed -i '/Copyright .* \(Yann Collet\)\|\(Meta Platforms\)/ s/Copyright .*/Copyright (c) Meta Platforms, Inc. and affiliates./' $f; done git checkout HEAD -- build/VS2010/libzstd-dll/libzstd-dll.rc build/VS2010/zstd/zstd.rc tests/test-license.py contrib/linux-kernel/test/include/linux/xxhash.h examples/streaming_compression_thread_pool.c lib/legacy/zstd_v0*.c lib/legacy/zstd_v0*.h nano ./programs/windres/zstd.rc nano ./build/VS2010/zstd/zstd.rc nano ./build/VS2010/libzstd-dll/libzstd-dll.rc ```
36 lines
1.3 KiB
Makefile
36 lines
1.3 KiB
Makefile
# ################################################################
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
# All rights reserved.
|
|
#
|
|
# 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).
|
|
# ################################################################
|
|
|
|
.PHONY: all
|
|
all: recover_directory
|
|
|
|
ZSTDLIBDIR ?= ../../lib
|
|
PROGRAMDIR ?= ../../programs
|
|
|
|
CFLAGS ?= -O3
|
|
CFLAGS += -I$(ZSTDLIBDIR) -I$(PROGRAMDIR)
|
|
CFLAGS += -Wall -Wextra -Wcast-qual -Wcast-align -Wshadow \
|
|
-Wstrict-aliasing=1 -Wswitch-enum \
|
|
-Wstrict-prototypes -Wundef \
|
|
-Wvla -Wformat=2 -Winit-self -Wfloat-equal -Wwrite-strings \
|
|
-Wredundant-decls -Wmissing-prototypes
|
|
CFLAGS += $(DEBUGFLAGS) $(MOREFLAGS)
|
|
FLAGS = $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)
|
|
|
|
.PHONY: $(ZSTDLIBDIR)/libzstd.a
|
|
$(ZSTDLIBDIR)/libzstd.a:
|
|
$(MAKE) -C $(ZSTDLIBDIR) libzstd.a
|
|
|
|
recover_directory: recover_directory.c $(ZSTDLIBDIR)/libzstd.a $(PROGRAMDIR)/util.c
|
|
$(CC) $(FLAGS) $^ -o $@$(EXT)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f recover_directory
|