libtool
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Separate Source Directories


From: Robert Boehne
Subject: Re: Separate Source Directories
Date: Wed, 17 Jan 2001 17:14:15 -0600

Eric Lemings wrote:
> 
> Dear Libtoolers,
> 
> How do you build a library using Libtool from source files that are
> located in different directories?

I use VPATH to tell GNU make to look in other directories.

For example, one of my Makefile.am's has this definition:

VPATH = @srcdir@ : \
@top_srcdir@/drv/Geom : @top_srcdir@/src/Geom: \
@top_srcdir@/drv/TColGeom : @top_srcdir@/src/TColGeom: \
@top_srcdir@/drv/GeomAdaptor : @top_srcdir@/src/GeomAdaptor: \
@top_srcdir@/drv/AdvApprox : @top_srcdir@/src/AdvApprox: \
@top_srcdir@/drv/GeomLProp : @top_srcdir@/src/GeomLProp: \
@top_srcdir@/drv/Adaptor3d : @top_srcdir@/src/Adaptor3d: \
@top_srcdir@/src/TKG2d

You need to have @srcdir@ in there, the other directories
are where any other files make needs to know about, such as source.
On some platforms the native 'make' does not support VPATH,
but it is simple enough to install GNU make to fix that.
 
Robert Boehne             Software Engineer
Ricardo Software   Chicago Technical Center
TEL: (630)789-0003 x. 238
FAX: (630)789-0127
email:  address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]