Re: [Rd] Makevars, cc files in multiple directories

2009-10-31 Thread Dirk Eddelbuettel
On 29 October 2009 at 11:47, Saptarshi Guha wrote: | Hello, | In the src folder of my R package I have | | a.cc | b.cc | f/g/x.cc | | my Makevars.in has | | all: $(SHLIB) | | upon installing only, a.o and b.o is build and the final dll is | comprised of a.o and b.o | | How can I instruct $(

Re: [Rd] Makevars, cc files in multiple directories

2009-10-29 Thread Paul Roebuck
On Thu, 29 Oct 2009, Saptarshi Guha wrote: > In the src folder of my R package I have > > a.cc > b.cc > f/g/x.cc > > my Makevars.in has > > all: $(SHLIB) > > upon installing only, a.o and b.o is build and the final dll is > comprised of a.o and b.o > > How can I instruct $(SHLIB) to pick up its so

[Rd] Makevars, cc files in multiple directories

2009-10-29 Thread Saptarshi Guha
Hello, In the src folder of my R package I have a.cc b.cc f/g/x.cc my Makevars.in has all: $(SHLIB) upon installing only, a.o and b.o is build and the final dll is comprised of a.o and b.o How can I instruct $(SHLIB) to pick up its source files from all subdirectories (or maybe a subset,