[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: rpath command?
From: |
Marc van Woerkom |
Subject: |
Re: rpath command? |
Date: |
Wed, 22 Nov 2000 21:45:44 +0100 (CET) |
> automake should define it to `$(LIBTOOL) $(CC/CXX)...'. Maybe it only
> does this when there is at least one source file to compile in the
> current directory?
Bingo!
After introducing this additions
Makefile.am:
libSciFacBase_la_SOURCES = \
buildme.c
buildme.c:
/*
void do_really_nothing_useful()
{
}
*/
it works.
Bizarre, I can't believe it. :-)
This project now features a source tree with customizable modules,
handles module dependencies, builds in separate build tree, installs
in seperate build tree..
address@hidden scifac.build]$ ../scifac/configure
--prefix=/home/mvw/work/scifac.install --without-Dataserver
--without-Dataserver2 --without-Dataserver3
.. and stumbles over an empty _SOURCES list. ROTFL.
Thanks for your remark, Alexandre!
Marc