
### Simple example of using Rcpp to interface C++ with R.
## Before you do $ make you need to:
##   $ export PKG_CXXFLAGS=`Rscript -e "Rcpp:::CxxFlags()"`

cexample.so: cmLL.cpp
	R CMD SHLIB cmLL.cpp

clean:
	rm -f *.o
	rm -f *.so

