Displaying 1 result from an estimated 1 matches for "cdfdata".
Did you mean:
cddata
2007 Jul 10
1
cleanup and Makevars
...er the next architecture.
I have a package which includes a large SDK which I have put in
src/fusion_sdk
(and subdirectories). I take care of that by using a Makevars file
with essentially (the whole Makevars file is reproduced below)
PKG_SOURCES = \
fusion_sdk/calvin_files/data/src/CDFData.cpp
OBJS=$(PKG_SOURCES:.cpp=.o)
all: $(SHLIB)
However, this setup does not remove the object files in the
fusion_sdk subdirectory. From a posting on R-sig-mac by Simon Urbanek
I learned that I need to clean up these directories myself.
I have - per R extensions - attempted to do so using a...