Displaying 2 results from an estimated 2 matches for "boost_src".
2015 May 13
2
Alternative for wildcard gnu extension in Makevars
I have some cpp-files from another library (boost) in a subdirectory
in my src directory (src/boost_src). I include these using the
following two lines in my Makevars:
SOURCES = $(wildcard *.cpp boost_src/*.cpp)
OBJECTS = $(SOURCES:.cpp=.o)
However, R CMD check complains about my use of 'wildcard'. How do I
handle this without any gnu extensions?
Thanks.
Jan
2015 May 13
3
Alternative for wildcard gnu extension in Makevars
Dirk Eddelbuettel <edd at debian.org> schreef:
> On 13 May 2015 at 17:27, Jan van der Laan wrote:
> |
> | I have some cpp-files from another library (boost) in a subdirectory
> | in my src directory (src/boost_src). I include these using the
> | following two lines in my Makevars:
> |
> | SOURCES = $(wildcard *.cpp boost_src/*.cpp)
> | OBJECTS = $(SOURCES:.cpp=.o)
> |
> | However, R CMD check complains about my use of 'wildcard'. How do I
> | handle this without any gnu extension...