1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
#-------------------------------------------------------------------------------
# GraphBLAS/GraphBLAS/Makefile: compile libgraphblas_matlab for use in MATLAB
#-------------------------------------------------------------------------------
# SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
#-------------------------------------------------------------------------------
# simple Makefile for GraphBLAS, relies on cmake to do the actual build. Use
# the CMAKE_OPTIONS argument to this Makefile to pass options to cmake.
JOBS ?= 8
default: library
# default is to install only in /usr/local
library:
( cd build && cmake $(CMAKE_OPTIONS) .. && cmake --build . -j${JOBS} )
# install only in SuiteSparse/lib and SuiteSparse/include
local:
( cd build && cmake $(CMAKE_OPTIONS) -DGLOBAL_INSTALL=0 -DLOCAL_INSTALL=1 .. && cmake --build . -j${JOBS} )
# install only in /usr/local (default)
global:
( cd build && cmake $(CMAKE_OPTIONS) -DGLOBAL_INSTALL=1 -DLOCAL_INSTALL=0 .. && cmake --build . -j${JOBS} )
# install in SuiteSparse/lib both and SuiteSparse/include and /usr/local
both:
( cd build && cmake $(CMAKE_OPTIONS) -DGLOBAL_INSTALL=1 -DLOCAL_INSTALL=1 .. && cmake --build . -j${JOBS} )
# compile with -g
debug:
( cd build && cmake -DCMAKE_BUILD_TYPE=Debug $(CMAKE_OPTIONS) .. && cmake --build . -j$(JOBS) )
# just do 'make' in build; do not rerun the cmake script
remake:
( cd build && cmake --build . -j$(JOBS) )
# just run cmake; do not compile
setup:
( cd build ; cmake $(CMAKE_OPTIONS) .. ; )
# installs GraphBLAS to the install location defined by cmake, usually
# /usr/local/lib and /usr/local/include
install:
( cd build && cmake --install . )
# remove any installed libraries and #include files
uninstall:
- xargs rm < build/install_manifest.txt
clean: distclean
purge: distclean
# remove all files not in the distribution
distclean:
rm -rf build/*
( cd test/tcov ; $(MAKE) distclean )
( cd @GrB/private ; $(MAKE) distclean )
|