*** empty log message ***

This commit is contained in:
Dave Goodwin 2003-09-06 15:00:40 +00:00
parent 3f27dcc438
commit 1e64a4fe52
2 changed files with 7 additions and 0 deletions

View file

@ -31,7 +31,11 @@ LIB_DEPS = $(CANTERA_LIBDIR)/libcantera.a $(CANTERA_LIBDIR)/libzeroD.a \
all: cantera/ctmethods.@mex_ext@
cantera/ctmethods.@mex_ext@: $(SRCS) $(LIB_DEPS)
ifeq ($(os_is_win),0)
@PYTHON_CMD@ setup_matlab.py @prefix@/bin @buildlib@ @CT_SHARED_LIB@ '$(LIBS)'
else
@PYTHON_CMD@ setup_winmatlab.py
endif
(@MATLAB_CMD@ -nodesktop -nojvm -nosplash -r setup)
rm -f setup.m

View file

@ -0,0 +1,3 @@
f = open('setup.m','w')
f.write('cd cantera\nbuildwin\nexit\n')
f.close()