]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Really move the makefile
authorNick Terrell <terrelln@fb.com>
Wed, 5 Apr 2017 00:02:28 +0000 (17:02 -0700)
committerNick Terrell <terrelln@fb.com>
Wed, 5 Apr 2017 00:02:28 +0000 (17:02 -0700)
contrib/linux-kernel/lib/zstd/Makefile [new file with mode: 0644]

diff --git a/contrib/linux-kernel/lib/zstd/Makefile b/contrib/linux-kernel/lib/zstd/Makefile
new file mode 100644 (file)
index 0000000..53b4dee
--- /dev/null
@@ -0,0 +1,9 @@
+obj-$(CONFIG_ZSTD_COMPRESS) += zstd_compress.o
+obj-$(CONFIG_ZSTD_DECOMPRESS) += zstd_decompress.o
+
+ccflags-y += -O3
+
+zstd_compress-y := entropy_common.o fse_decompress.o xxhash.o zstd_common.o \
+                               fse_compress.o huf_compress.o zstd_compress.o
+zstd_decompress-y := entropy_common.o fse_decompress.o xxhash.o zstd_common.o \
+                               huf_decompress.o zstd_decompress.o