Hi,

I am creating an R package with multiple c files within src directory. If 
possible, I would like to create separate dll files for each c file. Also I 
would like those dll files to have the same name as the input c files. i.e:
mod01.c -o mod01.dll
mod02.c -o mod02.dll
mod03.c -o mod03.dll
...

I could then load different dll files in the NAMESPACE:
useDynLib("mod01")
useDynLib("mod02")
useDynLib("mod03")
...

I don't know how can I set the MAKEVARS to do this correctly, and any 
suggestions would be much appreciated.

Mark
______________________________________________
R-package-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-package-devel

Reply via email to