Building Fortran 77 libtool modules

2003-12-11 Thread Schleicher Ralph (LLI)
ltmain.sh (GNU libtool) 1.5 (1.1220 2003/04/05 19:32:58) automake (GNU automake) 1.8 Hi, I want to create a libtool module written in Fortran 77 and ended up with the following code: $ cat configure.ac AC_INIT([foo], [1.0], [EMAIL PROTECTED]) AM_INIT_AUTOMAKE([1.7 foreign no-define])

making convenience libraries without libtool

2003-12-11 Thread Marty Leisner
I'm using libtool to make convenience libraries merging sublibraries... I really don't need to use libtool since I don't build shared libraries. How can I use automake to build convenience libraries -- or do I need to make a command in the makefile.am I can invoke like this: build_lib -o

Re: making convenience libraries without libtool

2003-12-11 Thread Bob Friesenhahn
I believe that Automake relies on libtool to support convenience libraries. Bob On Thu, 11 Dec 2003, Marty Leisner wrote: I'm using libtool to make convenience libraries merging sublibraries... I really don't need to use libtool since I don't build shared libraries. How can I use automake

Re: making convenience libraries without libtool

2003-12-11 Thread Daniel Reed
On 2003-12-11T11:00-0500, Marty Leisner wrote: ) I'm using libtool to make convenience libraries merging ) sublibraries... ) ) I really don't need to use libtool since I don't build shared libraries. Ensure your configure.{ac,in} contains at least: AC_PROG_CC AC_PROG_RANLIB Add to your

Re: Emulating GNU Make conditionals, or: Is there a nice way to automatically set CFLAGS when make is run?

2003-12-11 Thread Tom Tromey
Dalibor == Dalibor Topic [EMAIL PROTECTED] writes: Dalibor They use make -DCHECK=1 to enable adding of special debuggin flags, Dalibor for example, and make -DPROF=1 to add another set of flags to enable a Dalibor build fro profiling. You can always add your own targets: debugging: