Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#------------------------------------------------------------------------------# AMD Makefile (for GNU Make or original make)#------------------------------------------------------------------------------default: library# Compile all C code, including the C-callable routine and the mexFunctions.# Do not compile the FORTRAN versions.all:( cd Source ; make )# compile just the C-callable libraries and demo programs (not mexFunctions)library:( cd Source ; make )# remove object files, but keep the compiled programs and library archivesclean:( cd Source ; make clean )# clean, and then remove compiled programs and library archivespurge:( cd Source ; make purge )distclean: purge# create PDF documents for the original distributiondoc:#( cd Doc ; make )# get ready for distributiondist: purge#( cd Doc ; make )ccode: librarylib: library# compile the MATLAB mexFunctionmatlab:( cd MATLAB ; make )