1#-------------------------------------------------------------------------------
2# GraphBLAS/Test/Makefile
3#-------------------------------------------------------------------------------
4
5# SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
6# SPDX-License-Identifier: Apache-2.0
7
8#-------------------------------------------------------------------------------
9
10# This Makefile is only intended to clean up the compiled files and files
11# created by the make.m function in MATLAB.  To compile GraphBLAS for use in
12# MATLAB type 'make' in MATLAB.  To run the tests in Test/ type 'testall'.
13
14clean:
15	- $(RM) -r *.o *.obj *.out
16
17distclean: clean
18	$(RM) *.mex* errlog*.txt spok/*.mex* log.txt fprint.txt
19
20purge: distclean
21
22