blob: e7fca85fe96825e3f14db8d670fb6b001f0d80ae [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)
inikepa1febea2016-04-22 17:14:25 +020034#export VERSION := 0.6.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
Yann Collet6f9c0562016-05-01 10:26:30 +020057test:
58 $(MAKE) -C $(PRGDIR) $@
59
Yann Collet4856a002015-01-24 01:58:16 +010060clean:
Yann Collet88fcd292015-11-25 14:42:45 +010061 @$(MAKE) -C $(ZSTDDIR) $@ > $(VOID)
62 @$(MAKE) -C $(PRGDIR) $@ > $(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
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 Collet3f8ed502016-05-05 03:01:13 +020091gnu90test: clean
Yann Colletddb8ebd2016-05-05 04:59:53 +020092 $(MAKE) all CFLAGS="-std=gnu90 -Wall -Wextra -Wcast-qual -Wcast-align -Wshadow -Wstrict-aliasing=1 -Wswitch-enum -Wstrict-prototypes -Wundef -Wdeclaration-after-statement -Werror"
93
94c90test: clean
95 $(MAKE) all CFLAGS="-std=c90 -Wall -Wextra -Wcast-qual -Wcast-align -Wshadow -Wstrict-aliasing=1 -Wswitch-enum -Wstrict-prototypes -Wundef -Werror" # will fail, due to // and long long
Yann Collet3f8ed502016-05-05 03:01:13 +020096
Yann Collet6f9c0562016-05-01 10:26:30 +020097bmix64test: clean
98 CFLAGS="-O3 -mbmi -Werror" $(MAKE) -C $(PRGDIR) test
99
100bmix32test: clean
101 CFLAGS="-O3 -mbmi -mx32 -Werror" $(MAKE) -C $(PRGDIR) test
102
103bmi32test: clean
104 CFLAGS="-O3 -mbmi -m32 -Werror" $(MAKE) -C $(PRGDIR) test
105
Yann Collet7083b8a2015-07-06 23:58:59 -0800106armtest: clean
Yann Collet648959a2016-02-07 23:58:32 +0100107 $(MAKE) -C $(PRGDIR) datagen # use native, faster
Yann Collet74bd1192016-03-26 17:50:26 +0100108 $(MAKE) -C $(PRGDIR) test CC=arm-linux-gnueabi-gcc ZSTDRTTEST= MOREFLAGS="-Werror -static"
Yann Collet521b0102016-02-08 01:27:59 +0100109
110# for Travis CI
111arminstall: clean
112 sudo apt-get install -q qemu
113 sudo apt-get install -q binfmt-support
114 sudo apt-get install -q qemu-user-static
115 sudo apt-get install -q gcc-arm-linux-gnueabi
116
117# for Travis CI
118armtest-w-install: clean arminstall armtest
119
120ppctest: clean
121 $(MAKE) -C $(PRGDIR) datagen # use native, faster
Yann Collet74bd1192016-03-26 17:50:26 +0100122 $(MAKE) -C $(PRGDIR) test CC=powerpc-linux-gnu-gcc ZSTDRTTEST= MOREFLAGS="-Werror -static"
Yann Collet521b0102016-02-08 01:27:59 +0100123
124# for Travis CI
125ppcinstall: clean
126 sudo apt-get install -q qemu
127 sudo apt-get install -q binfmt-support
128 sudo apt-get install -q qemu-user-static
Yann Collet991b3902016-02-08 20:58:37 +0100129 sudo apt-get update -q
130 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 +0100131
132# for Travis CI
133ppctest-w-install: clean ppcinstall ppctest
Yann Collet7083b8a2015-07-06 23:58:59 -0800134
Yann Collet83fae972015-10-23 15:21:53 +0100135usan: clean
Yann Collet674d91b2015-07-07 00:36:49 -0800136 $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=undefined"
Yann Collet213089c2015-06-18 07:43:16 -0800137
Yann Collet83fae972015-10-23 15:21:53 +0100138asan: clean
139 $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=address"
140
Yann Colletd9967432016-05-18 14:16:49 +0200141msan: clean
Yann Colletbde926f2016-05-18 17:18:48 +0200142 $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=memory" # datagen.c fails this test, for no obvious reason
Yann Colletd9967432016-05-18 14:16:49 +0200143
Yann Collet6c3e2e72015-12-11 10:44:07 +0100144asan32: clean
145 $(MAKE) -C $(PRGDIR) test32 CC=clang MOREFLAGS="-g -fsanitize=address"
146
Yann Collet83fae972015-10-23 15:21:53 +0100147uasan: clean
148 $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=address -fsanitize=undefined"
149
Yann Collet4856a002015-01-24 01:58:16 +0100150endif