blob: 53017853a501427df9141e75c7fd70e4b55449e0 [file] [log] [blame]
Yann Colletdca60f22016-05-23 14:23:55 +02001# ##########################################################################
2# Zstd tests - Makefile
3# Based on LZ4 version test, by Takayuki Matsuoka - 2015-2016
4#
5# GPL v2 License
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License along
18# with this program; if not, write to the Free Software Foundation, Inc.,
19# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20#
21# You can contact the author at :
22# - ZSTD homepage : http://www.zstd.net/
23# ##########################################################################
24# versionstest : Compatibility test between zstd versions stored on Github (v0.1+)
25# ##########################################################################
26
27PYTHON?= python3
28TESTDIR := zstdtest
29
Yann Collet3a2c3292016-06-12 22:31:47 +020030.PHONY: default all clean versionsTest
31
Yann Colletdca60f22016-05-23 14:23:55 +020032default: all
33
34all: versionsTest
35
36versionsTest:
37 $(PYTHON) test-zstd-versions.py
38
39clean:
40 @rm -fR $(TESTDIR)
41 @echo Cleaning completed