blob: 6f6c76ea7465be1cbeb99e6a50bc5f26f50cb5ae [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 :
Yann Collet4f0a3932016-02-07 04:00:27 +010030# - zstd homepage : http://www.zstd.net/
Yann Collet4856a002015-01-24 01:58:16 +010031# ################################################################
32
Yann Collet722504c2015-12-31 18:32:15 +010033# force a version number : uncomment below export (otherwise, default to the one declared into zstd.h)
34#export VERSION := 0.4.6
Yann Collet4856a002015-01-24 01:58:16 +010035
Yann Collet4856a002015-01-24 01:58:16 +010036PRGDIR = programs
37ZSTDDIR = lib
Yann Collet9cadd082016-01-28 15:39:52 +010038DICTDIR = dictBuilder
Yann Collet4856a002015-01-24 01:58:16 +010039
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 Collet9cadd082016-01-28 15:39:52 +010054 $(MAKE) -C $(DICTDIR) $@
Yann Collet4856a002015-01-24 01:58:16 +010055
Yann Colletbf504092015-08-26 00:19:06 +010056zstdprogram:
57 $(MAKE) -C $(PRGDIR)
Yann Collet4856a002015-01-24 01:58:16 +010058
59clean:
Yann Collet88fcd292015-11-25 14:42:45 +010060 @$(MAKE) -C $(ZSTDDIR) $@ > $(VOID)
61 @$(MAKE) -C $(PRGDIR) $@ > $(VOID)
Yann Collet9cadd082016-01-28 15:39:52 +010062 @$(MAKE) -C $(DICTDIR) $@ > $(VOID)
Yann Collet4856a002015-01-24 01:58:16 +010063 @echo Cleaning completed
64
65
66#------------------------------------------------------------------------
67#make install is validated only for Linux, OSX, kFreeBSD and Hurd targets
68ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU))
69
70install:
Yann Colletbf504092015-08-26 00:19:06 +010071 $(MAKE) -C $(ZSTDDIR) $@
72 $(MAKE) -C $(PRGDIR) $@
Yann Collet4856a002015-01-24 01:58:16 +010073
74uninstall:
Yann Colletbf504092015-08-26 00:19:06 +010075 $(MAKE) -C $(ZSTDDIR) $@
76 $(MAKE) -C $(PRGDIR) $@
Yann Collet4856a002015-01-24 01:58:16 +010077
78travis-install:
Yann Colletc620b482015-12-01 01:56:02 +010079 $(MAKE) install PREFIX=~/install_test_dir
Yann Collet4856a002015-01-24 01:58:16 +010080
81test:
Yann Colletbf504092015-08-26 00:19:06 +010082 $(MAKE) -C $(PRGDIR) $@
Yann Collet9cadd082016-01-28 15:39:52 +010083 $(MAKE) -C $(DICTDIR) $@
Yann Collet4856a002015-01-24 01:58:16 +010084
Yann Collet3e5b73b2016-01-10 20:46:20 +010085cmaketest:
86 cd contrib/cmake ; cmake . ; $(MAKE)
87
Yann Collet213089c2015-06-18 07:43:16 -080088clangtest: clean
Yann Colletf4ce8912015-08-11 14:18:45 +010089 clang -v
Yann Collet213089c2015-06-18 07:43:16 -080090 $(MAKE) all CC=clang MOREFLAGS="-Werror -Wconversion -Wno-sign-conversion"
91
92gpptest: clean
93 $(MAKE) all CC=g++ CFLAGS="-O3 -Wall -Wextra -Wundef -Wshadow -Wcast-align -Werror"
94
Yann Collet7083b8a2015-07-06 23:58:59 -080095armtest: clean
Yann Collet417890c2015-12-04 17:16:37 +010096 $(MAKE) -C $(ZSTDDIR) all CC=arm-linux-gnueabi-gcc MOREFLAGS="-Werror"
97 $(MAKE) -C $(PRGDIR) CC=arm-linux-gnueabi-gcc MOREFLAGS="-Werror -static"
Yann Collet7083b8a2015-07-06 23:58:59 -080098
Yann Collet83fae972015-10-23 15:21:53 +010099usan: clean
Yann Collet674d91b2015-07-07 00:36:49 -0800100 $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=undefined"
Yann Collet213089c2015-06-18 07:43:16 -0800101
Yann Collet83fae972015-10-23 15:21:53 +0100102asan: clean
103 $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=address"
104
Yann Collet6c3e2e72015-12-11 10:44:07 +0100105asan32: clean
106 $(MAKE) -C $(PRGDIR) test32 CC=clang MOREFLAGS="-g -fsanitize=address"
107
Yann Collet83fae972015-10-23 15:21:53 +0100108uasan: clean
109 $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=address -fsanitize=undefined"
110
Yann Collet4856a002015-01-24 01:58:16 +0100111endif