# modified by É. Canot -- IPR/CNRS -- Aug 2013

#-------------------------------------------------------------------------------
# SuiteSparse_config Makefile for compiling on Unix systems (for GNU make only)
#-------------------------------------------------------------------------------

C = $(CC) $(CC_FLAGS) -I.

#-------------------------------------------------------------------------------
# source files
#-------------------------------------------------------------------------------

INC = SuiteSparse_config.h

#-------------------------------------------------------------------------------
# object files
#-------------------------------------------------------------------------------

all : ../obj/SuiteSparse_config.o

#-------------------------------------------------------------------------------
# compile each int routine
#-------------------------------------------------------------------------------

../obj/SuiteSparse_config.o: SuiteSparse_config.c $(INC)
	$(C) -c $< -o $@

