###########################################################################
# Makefile
#
# SDPPACK Version 0.9 BETA
# Copyright (c) 1997 by
# F. Alizadeh, J.-P. Haeberly, M. Nayakkankuppam, M.L. Overton, S. Schmieta
# Last modified: 6/9/97
###########################################################################

# the location of this file may vary depending on your Matlab
# installation.
MEX=/export/matlab/bin/mex

# standard options are provided in this file, which is sourced prior
# to every mex command.  You may want to add your own compiler specific
# options to this file, or rewrite the file itself to suit your needs.
MEXOPTS=mex/mexopts.sh

################## Do not edit below this line ###########################
default:
	$(MEX) -f $(MEXOPTS) mex/svec.c
	$(MEX) -f $(MEXOPTS) mex/smat.c
	$(MEX) -f $(MEXOPTS) mex/evsumdiv.c
	$(MEX) -f $(MEXOPTS) mex/lyapsol.c
	$(MEX) -f $(MEXOPTS) mex/arwmul.c
	$(MEX) -f $(MEXOPTS) mex/arwimul.c
	$(MEX) -f $(MEXOPTS) mex/qcschur.c

