The R Project SVN R-packages

Rev

Rev 2182 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

#-------------------------------------------------------------------------------
# CHOLMOD Makefile
#-------------------------------------------------------------------------------

default: all

# Compile the C-callable libraries and the Demo programs.
all:
    ( cd Lib ; $(MAKE) )

# Compile the C-callable libraries only.
library:
    ( cd Lib ; $(MAKE) )

lib: library

# Remove all files not in the original distribution
purge:
    ( cd Lib ; $(MAKE) purge )

# Remove all files not in the original distribution, except keep the 
# compiled libraries.
clean:
    ( cd Lib ; $(MAKE) clean )

distclean: purge

ccode: all