Hi,

        Does anyone know how to "tell" an Imakefile to copy a shared-library and
it's lib file to a user-specified location instead of the X directories?

For example, I have the following Imakefile, and I'd like for the .DLL file
to go to one directory, and its complimentary .LIB file to go to another
directory;



            SRCS = ldlib.cpp
            OBJS = ldlib.o
         LIBNAME = ldlib

              CC = g++ -mno-cygwin

           SOREV = 1.0

        INCLUDES = -I../../include

DependTarget()
SharedLibraryTarget($(LIBNAME),$(SOREV),$(OBJS),.,.)
InstallSharedLibrary($(LIBNAME),$(SOREV),.)



How do you get the InstallSharedLibrary target to copy the files to
alternate destinations and not the default ones?



Reply via email to