blob: 494f59dcac5dce2c9b370e35751a895585c74693 [file] [log] [blame]
Yann Collet4856a002015-01-24 01:58:16 +01001# ################################################################
2# zstd - Makefile
Yann Collet648959a2016-02-07 23:58:32 +01003# Copyright (C) Yann Collet 2014-2016
Yann Collet4856a002015-01-24 01:58:16 +01004# 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)
Yann Collet0db41152016-02-10 14:50:22 +010034#export VERSION := 0.5.1
Yann Collet4856a002015-01-24 01:58:16 +010035
Yann Collet4856a002015-01-24 01:58:16 +010036PRGDIR = programs
37ZSTDDIR = lib
38
Yann Collet88fcd292015-11-25 14:42:45 +010039# Define nul output
40ifneq (,$(filter Windows%,$(OS)))
41VOID = nul
42else
43VOID = /dev/null
44endif
45
46.PHONY: default all zstdprogram clean install uninstall travis-install test clangtest gpptest armtest usan asan uasan
Yann Collet213089c2015-06-18 07:43:16 -080047
Yann Colletbf504092015-08-26 00:19:06 +010048default: zstdprogram
Yann Collet4856a002015-01-24 01:58:16 +010049
50all:
Yann Colletbf504092015-08-26 00:19:06 +010051 $(MAKE) -C $(ZSTDDIR) $@
52 $(MAKE) -C $(PRGDIR) $@
Yann Collet4856a002015-01-24 01:58:16 +010053
Yann Colletbf504092015-08-26 00:19:06 +010054zstdprogram:
55 $(MAKE) -C $(PRGDIR)
Yann Collet4856a002015-01-24 01:58:16 +010056
57clean:
Yann Collet88fcd292015-11-25 14:42:45 +010058 @$(MAKE) -C $(ZSTDDIR) $@ > $(VOID)
59 @$(MAKE) -C $(PRGDIR) $@ > $(VOID)
Yann Collet4856a002015-01-24 01:58:16 +010060 @echo Cleaning completed
61
62
63#------------------------------------------------------------------------
64#make install is validated only for Linux, OSX, kFreeBSD and Hurd targets
65ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU))
66
67install:
Yann Colletbf504092015-08-26 00:19:06 +010068 $(MAKE) -C $(ZSTDDIR) $@
69 $(MAKE) -C $(PRGDIR) $@
Yann Collet4856a002015-01-24 01:58:16 +010070
71uninstall:
Yann Colletbf504092015-08-26 00:19:06 +010072 $(MAKE) -C $(ZSTDDIR) $@
73 $(MAKE) -C $(PRGDIR) $@
Yann Collet4856a002015-01-24 01:58:16 +010074
75travis-install:
Yann Colletc620b482015-12-01 01:56:02 +010076 $(MAKE) install PREFIX=~/install_test_dir
Yann Collet4856a002015-01-24 01:58:16 +010077
78test:
Yann Colletbf504092015-08-26 00:19:06 +010079 $(MAKE) -C $(PRGDIR) $@
Yann Collet4856a002015-01-24 01:58:16 +010080
Yann Collet3e5b73b2016-01-10 20:46:20 +010081cmaketest:
82 cd contrib/cmake ; cmake . ; $(MAKE)
83
Yann Collet213089c2015-06-18 07:43:16 -080084clangtest: clean
Yann Colletf4ce8912015-08-11 14:18:45 +010085 clang -v
Yann Collet213089c2015-06-18 07:43:16 -080086 $(MAKE) all CC=clang MOREFLAGS="-Werror -Wconversion -Wno-sign-conversion"
87
88gpptest: clean
89 $(MAKE) all CC=g++ CFLAGS="-O3 -Wall -Wextra -Wundef -Wshadow -Wcast-align -Werror"
90
Yann Collet7083b8a2015-07-06 23:58:59 -080091armtest: clean
Yann Collet648959a2016-02-07 23:58:32 +010092 $(MAKE) -C $(PRGDIR) datagen # use native, faster
Yann Collet74bd1192016-03-26 17:50:26 +010093 $(MAKE) -C $(PRGDIR) test CC=arm-linux-gnueabi-gcc ZSTDRTTEST= MOREFLAGS="-Werror -static"
Yann Collet521b0102016-02-08 01:27:59 +010094
95# for Travis CI
96arminstall: clean
97 sudo apt-get install -q qemu
98 sudo apt-get install -q binfmt-support
99 sudo apt-get install -q qemu-user-static
100 sudo apt-get install -q gcc-arm-linux-gnueabi
101
102# for Travis CI
103armtest-w-install: clean arminstall armtest
104
105ppctest: clean
106 $(MAKE) -C $(PRGDIR) datagen # use native, faster
Yann Collet74bd1192016-03-26 17:50:26 +0100107 $(MAKE) -C $(PRGDIR) test CC=powerpc-linux-gnu-gcc ZSTDRTTEST= MOREFLAGS="-Werror -static"
Yann Collet521b0102016-02-08 01:27:59 +0100108
109# for Travis CI
110ppcinstall: clean
111 sudo apt-get install -q qemu
112 sudo apt-get install -q binfmt-support
113 sudo apt-get install -q qemu-user-static
Yann Collet991b3902016-02-08 20:58:37 +0100114 sudo apt-get update -q
115 sudo apt-get install -q gcc-powerpc-linux-gnu # unfortunately, doesn't work on Travis CI (package not available)
Yann Collet521b0102016-02-08 01:27:59 +0100116
117# for Travis CI
118ppctest-w-install: clean ppcinstall ppctest
Yann Collet7083b8a2015-07-06 23:58:59 -0800119
Yann Collet83fae972015-10-23 15:21:53 +0100120usan: clean
Yann Collet674d91b2015-07-07 00:36:49 -0800121 $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=undefined"
Yann Collet213089c2015-06-18 07:43:16 -0800122
Yann Collet83fae972015-10-23 15:21:53 +0100123asan: clean
124 $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=address"
125
Yann Collet6c3e2e72015-12-11 10:44:07 +0100126asan32: clean
127 $(MAKE) -C $(PRGDIR) test32 CC=clang MOREFLAGS="-g -fsanitize=address"
128
Yann Collet83fae972015-10-23 15:21:53 +0100129uasan: clean
130 $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=address -fsanitize=undefined"
131
Yann Collet4856a002015-01-24 01:58:16 +0100132endif