diff options
author | Yann Collet <cyan@fb.com> | 2020-12-01 00:06:50 (GMT) |
---|---|---|
committer | Yann Collet <cyan@fb.com> | 2020-12-01 00:06:50 (GMT) |
commit | e585a438c714652e866a59371b287f52aa4d2dc3 (patch) | |
tree | 33b49e2fcb8fbc90a32aa9c3f7fc16f35b2f3829 /Makefile.inc | |
parent | 87a80acbe7872b9da7d56f7005ffd1b715e87c93 (diff) | |
download | lz4-e585a438c714652e866a59371b287f52aa4d2dc3.zip lz4-e585a438c714652e866a59371b287f52aa4d2dc3.tar.gz lz4-e585a438c714652e866a59371b287f52aa4d2dc3.tar.bz2 |
refactor Makefile
remove usage of include Makefile.inc in too Makefile
as it seems to somehow unexport CFLAGS ...
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 36 |
1 files changed, 31 insertions, 5 deletions
diff --git a/Makefile.inc b/Makefile.inc index 2d64405..338ef56 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -1,8 +1,34 @@ -ifeq ($(V), 1) -Q = -else -Q = @ -endif +# ################################################################ +# LZ4 - Makefile common definitions +# Copyright (C) Yann Collet 2020 +# All rights reserved. +# +# BSD license +# Redistribution and use in source and binary forms, with or without modification, +# are permitted provided that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright notice, this +# list of conditions and the following disclaimer. +# +# * Redistributions in binary form must reproduce the above copyright notice, this +# list of conditions and the following disclaimer in the documentation and/or +# other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# You can contact the author at : +# - LZ4 source repository : https://github.com/lz4/lz4 +# - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c +# ################################################################ TARGET_OS ?= $(shell uname) ifeq ($(TARGET_OS),) |