Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 1 | # ########################################################################## |
| 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 | |
| 27 | PYTHON?= python3 |
| 28 | TESTDIR := zstdtest |
| 29 | |
Yann Collet | 3a2c329 | 2016-06-12 22:31:47 +0200 | [diff] [blame] | 30 | .PHONY: default all clean versionsTest |
| 31 | |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 32 | default: all |
| 33 | |
| 34 | all: versionsTest |
| 35 | |
| 36 | versionsTest: |
| 37 | $(PYTHON) test-zstd-versions.py |
| 38 | |
| 39 | clean: |
| 40 | @rm -fR $(TESTDIR) |
| 41 | @echo Cleaning completed |