blob: 9e7b70ee094fd3fa5bc3607719828bd5d1dc8f57 [file] [log] [blame]
Yann Collet4856a002015-01-24 01:58:16 +01001# ################################################################
2# zstd - Makefile
3# Copyright (C) Yann Collet 2014-2015
4# All rights reserved.
5#
6# BSD license
7#
8# Redistribution and use in source and binary forms, with or without modification,
9# are permitted provided that the following conditions are met:
10#
11# * Redistributions of source code must retain the above copyright notice, this
12# list of conditions and the following disclaimer.
13#
14# * Redistributions in binary form must reproduce the above copyright notice, this
15# list of conditions and the following disclaimer in the documentation and/or
16# other materials provided with the distribution.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
22# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# You can contact the author at :
30# - zstd source repository : https://github.com/Cyan4973/zstd
31# - Public forum : https://groups.google.com/forum/#!forum/lz4c
32# ################################################################
33
34# Version number
Yann Collet28e7cef2015-12-03 12:11:30 +010035export VERSION := 0.4.3
Yann Collet4856a002015-01-24 01:58:16 +010036
Yann Collet4856a002015-01-24 01:58:16 +010037PRGDIR = programs
38ZSTDDIR = lib
39
Yann Collet88fcd292015-11-25 14:42:45 +010040# Define nul output
41ifneq (,$(filter Windows%,$(OS)))
42VOID = nul
43else
44VOID = /dev/null
45endif
46
47.PHONY: default all zstdprogram clean install uninstall travis-install test clangtest gpptest armtest usan asan uasan
Yann Collet213089c2015-06-18 07:43:16 -080048
Yann Colletbf504092015-08-26 00:19:06 +010049default: zstdprogram
Yann Collet4856a002015-01-24 01:58:16 +010050
51all:
Yann Colletbf504092015-08-26 00:19:06 +010052 $(MAKE) -C $(ZSTDDIR) $@
53 $(MAKE) -C $(PRGDIR) $@
Yann Collet4856a002015-01-24 01:58:16 +010054
Yann Colletbf504092015-08-26 00:19:06 +010055zstdprogram:
56 $(MAKE) -C $(PRGDIR)
Yann Collet4856a002015-01-24 01:58:16 +010057
58clean:
Yann Collet88fcd292015-11-25 14:42:45 +010059 @$(MAKE) -C $(ZSTDDIR) $@ > $(VOID)
60 @$(MAKE) -C $(PRGDIR) $@ > $(VOID)
Yann Collet4856a002015-01-24 01:58:16 +010061 @echo Cleaning completed
62
63
64#------------------------------------------------------------------------
65#make install is validated only for Linux, OSX, kFreeBSD and Hurd targets
66ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU))
67
68install:
Yann Colletbf504092015-08-26 00:19:06 +010069 $(MAKE) -C $(ZSTDDIR) $@
70 $(MAKE) -C $(PRGDIR) $@
Yann Collet4856a002015-01-24 01:58:16 +010071
72uninstall:
Yann Colletbf504092015-08-26 00:19:06 +010073 $(MAKE) -C $(ZSTDDIR) $@
74 $(MAKE) -C $(PRGDIR) $@
Yann Collet4856a002015-01-24 01:58:16 +010075
76travis-install:
Yann Colletc620b482015-12-01 01:56:02 +010077 $(MAKE) install PREFIX=~/install_test_dir
Yann Collet4856a002015-01-24 01:58:16 +010078
79test:
Yann Colletbf504092015-08-26 00:19:06 +010080 $(MAKE) -C $(PRGDIR) $@
Yann Collet4856a002015-01-24 01:58:16 +010081
Yann Collet213089c2015-06-18 07:43:16 -080082clangtest: clean
Yann Colletf4ce8912015-08-11 14:18:45 +010083 clang -v
Yann Collet213089c2015-06-18 07:43:16 -080084 $(MAKE) all CC=clang MOREFLAGS="-Werror -Wconversion -Wno-sign-conversion"
85
86gpptest: clean
87 $(MAKE) all CC=g++ CFLAGS="-O3 -Wall -Wextra -Wundef -Wshadow -Wcast-align -Werror"
88
Yann Collet7083b8a2015-07-06 23:58:59 -080089armtest: clean
Yann Collet417890c2015-12-04 17:16:37 +010090 $(MAKE) -C $(ZSTDDIR) all CC=arm-linux-gnueabi-gcc MOREFLAGS="-Werror"
91 $(MAKE) -C $(PRGDIR) CC=arm-linux-gnueabi-gcc MOREFLAGS="-Werror -static"
Yann Collet7083b8a2015-07-06 23:58:59 -080092
Yann Collet83fae972015-10-23 15:21:53 +010093usan: clean
Yann Collet674d91b2015-07-07 00:36:49 -080094 $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=undefined"
Yann Collet213089c2015-06-18 07:43:16 -080095
Yann Collet83fae972015-10-23 15:21:53 +010096asan: clean
97 $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=address"
98
99uasan: clean
100 $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=address -fsanitize=undefined"
101
Yann Collet4856a002015-01-24 01:58:16 +0100102endif