From: Nick Terrell Date: Wed, 5 Apr 2017 00:02:28 +0000 (-0700) Subject: Really move the makefile X-Git-Tag: v1.2.0^2~58^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e4dbd2105faf5f43f65c18d920dc0e365c0c2b5;p=thirdparty%2Fzstd.git Really move the makefile --- diff --git a/contrib/linux-kernel/lib/zstd/Makefile b/contrib/linux-kernel/lib/zstd/Makefile new file mode 100644 index 000000000..53b4deec9 --- /dev/null +++ b/contrib/linux-kernel/lib/zstd/Makefile @@ -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