Re: Need Help Writing a Rule

2008-05-28 Thread Stepan Kasal
Hello, On Sun, May 25, 2008 at 07:49:51PM -0700, Bobby Dill wrote: > %.cpp: %.png > uic -embed colortool $? -o $@ > > image_collection.cpp: images/designer_widgetstack.png \ > images/designer_d_table.png \ > images/designer_d_iconview.png well, this is more aquestion abou

Need Help Writing a Rule

2008-05-25 Thread Bobby Dill
I'm trying to compile qt programs with automake. I used qmake to generate a Makefile first and then converted this into an automake file. My latest problem involves putting images into a form. Here's qmake's version of how to do this. .ui/qmake_image_collection.cpp: images/filenew \

Re: need help in "deep" project ..

2007-08-21 Thread Roberto Alejandro Espí Muñoz
Yes, It's been dealt with. Thanks for your concern and the speedy response from the mailing list I have this older message still lying around, not sure whether it's been > dealt with or not: > > * Roberto Alejandro Espí Muñoz wrote on Thu, Jul 05, 2007 at 09:51:44PM > CEST: > > > [...] > > src/

Re: need help in "deep" project ..

2007-08-20 Thread Ralf Wildenhues
Hello Roberto, I have this older message still lying around, not sure whether it's been dealt with or not: * Roberto Alejandro Espí Muñoz wrote on Thu, Jul 05, 2007 at 09:51:44PM CEST: > [...] > src/Makefile.am: > elementos =\ >main.cpp \ >Base/AlarmManager.cpp \ >Base/AlarmsSumm

Re: need help in "deep" project ..

2007-07-05 Thread Roberto Alejandro Espí Muñoz
Thanks for the tips and the guidance. I followed your advice and finally mi files were: configure.ac: AC_INIT([hmi], [0.3], [EMAIL PROTECTED]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AC_PROG_CXX AC_CONFIG_FILES([ Makefile src/Makefile ]) AC_OUTPUT Makefile.am: SUBDIRS = src src/Mak

Re: need help in "deep" project ..

2007-07-03 Thread Bob Proulx
Ralf Wildenhues wrote: > * Roberto Alejandro Espí Muñoz wrote: > > AC_INIT([/src/main.cpp]) > > Also note that there is a new form of AC_INIT/AM_INIT_AUTOMAKE, > used and explained in the manual: > To give an example, try using this in

Re: need help in "deep" project ..

2007-07-03 Thread Ralf Wildenhues
I forgot: > * Roberto Alejandro Espí Muñoz wrote on Tue, Jul 03, 2007 at 07:11:43PM CEST: > > > AUTOMAKE_OPTIONS = foreign This belongs in the toplevel Makefile.am (or, alternatively, if you use the new style AM_INIT_AUTOMAKE invocation, in configure.ac like this: AM_INIT_AUTOMAKE([foreign])

Re: need help in "deep" project ..

2007-07-03 Thread Ralf Wildenhues
* Roberto Alejandro Espí Muñoz wrote on Tue, Jul 03, 2007 at 07:11:43PM CEST: > > AC_INIT([/src/main.cpp]) Please remove the leading slash: AC_INIT([src/main.cpp]) Also note that there is a new form of AC_INIT/AM_INIT_AUTOMAKE, used and explained in the manual:

need help in "deep" project ..

2007-07-03 Thread Roberto Alejandro Espí Muñoz
I read the tutorial pertaining automake and it is a great way to create automated build projects and portable also. Great Work !!! I want to convert my Eclipse make project to an automake project. I saw the examples listed in the tutorial but I didn't see one where there would be subdirectories

Re: Need help with cleaning up a working GNU Autotools setup

2005-10-09 Thread Tomas Zerolo
On Sat, Oct 08, 2005 at 09:27:01PM +0200, Sune Ahlgren wrote: [...] > Question: > > At this point all object files, binaries and libraries end up in the > same directory as the source code from which they are created. This > means a mess and I would want something like this: [...] AFA

Re: Need help with cleaning up a working GNU Autotools setup

2005-10-09 Thread Ralf Wildenhues
Hi Sune, * Sune Ahlgren wrote on Sat, Oct 08, 2005 at 09:27:01PM CEST: > > At this point all object files, binaries and libraries end up in the > same directory as the source code from which they are created. This > means a mess and I would want something like this: > >

Need help with cleaning up a working GNU Autotools setup

2005-10-08 Thread Sune Ahlgren
First of all, this is a crosspost, but since I get no feedback from the other group I'm hoping for you guys. Thanks! Second of all, you may have got a copy of this message 5 minutes ago since Hotmail seems to have gone haywire. Sorry in that case Hi, I've just moved from Eclipse CDT's 'Mana

Need help with cleaning up a working GNU Autotools setup

2005-10-08 Thread Sune Ahlgren
First of all, this is a crosspost, but since I get no feedback from the other group I'm hoping for you guys. Thanks! Hi, I've just moved from Eclipse CDT's 'Managed makefiles' to GNU's Autotools. It's a small project with 1 base directory and 3 subdirectories: rsd-+collections

Re: Cannot build, need help!

2005-06-23 Thread SummoneR
Hello! Ralf Wildenhues wrote: Hi, * SummoneR wrote on Tue, Jun 21, 2005 at 07:40:30PM CEST: I would like to build a client called Boinc on OpenBSD3.7-i386 and it has a dependency on Automake 1.9.3. I'm newbie at compiling anything, especially on BSD, but usually there isn't any problem i

Re: Cannot build, need help!

2005-06-23 Thread Alexandre Duret-Lutz
On Thu, Jun 23, 2005 at 03:27:18PM +0200, Ralf Wildenhues wrote: > Hi > > * SummoneR wrote on Thu, Jun 23, 2005 at 03:14:40PM CEST: > > Ralf Wildenhues wrote: > > >* SummoneR wrote on Tue, Jun 21, 2005 at 07:40:30PM CEST: > > > > > >>And if I continue with make && make install and finally try to bu

Re: Cannot build, need help!

2005-06-23 Thread Ralf Wildenhues
Hi * SummoneR wrote on Thu, Jun 23, 2005 at 03:14:40PM CEST: > Ralf Wildenhues wrote: > >* SummoneR wrote on Tue, Jun 21, 2005 at 07:40:30PM CEST: > > > >>And if I continue with make && make install and finally try to build > >>Boinc: > >> > >>Bootstrapping configure script and makefiles: > >>au

Re: Cannot build, need help!

2005-06-22 Thread Ralf Wildenhues
Hi, * SummoneR wrote on Tue, Jun 21, 2005 at 07:40:30PM CEST: > > I would like to build a client called Boinc on OpenBSD3.7-i386 and it > has a dependency on Automake 1.9.3. I'm newbie at compiling anything, > especially on BSD, but usually there isn't any problem if anything > should be builde

Cannot build, need help!

2005-06-21 Thread SummoneR
Hello! I would like to build a client called Boinc on OpenBSD3.7-i386 and it has a dependency on Automake 1.9.3. I'm newbie at compiling anything, especially on BSD, but usually there isn't any problem if anything should be builded from source, but not this time. The 'optionally' mentioned 'ma

Need help with women? we can help

2004-02-05 Thread Arron Vaughan
Title: Untitled Document Want A Bigger Penis? The tests that took place over a 2 year period showed that out of the 17,000 Males from around the world who participated, the average gain after 4 months of taking VP-RX pills was 3.02 Inches! Amazing, PERMANENT RESULTS that will last. REA

Re: Need help with aclocal parsing

2002-10-12 Thread Alexandre Duret-Lutz
>>> "Tom" == Tom Epperly <[EMAIL PROTECTED]> writes: Tom> Tamara L Dahlgren wrote: >> In trying to integrate F90/F95 macros into our acinclude.m4 file, I've >> encountered problems with aclocal's parsing. In particular aclocal does >> not parse the F90 or F95 preprocessor or compiler macros (

Re: Need help with aclocal parsing

2002-10-10 Thread Tom Epperly
Tamara L Dahlgren wrote: >In trying to integrate F90/F95 macros into our acinclude.m4 file, I've >encountered problems with aclocal's parsing. In particular aclocal does >not parse the F90 or F95 preprocessor or compiler macros (i.e., >AC_LANG_PREPROC(Fortran 90), AC_LANG_COMPILER(Fortran 90), >

Need help with aclocal parsing

2002-10-09 Thread Tamara L Dahlgren
I'm working on a project that depends upon automake (1.6.x) and autoconf (2.53) on a linux box for our build system. We already support F77 and are trying to simultaneously support F90/F95. We would prefer to use released versions of the tools rather than hacking our own so I would appreciate an

Re: Need help with problem...

2001-09-25 Thread Tim Van Holder
Please, no HTML. > lib_LTLIBRARIES = libfoo.la > libfoo_la_SOURCES = \ > one.c \ > one.cpp \ > two.c \ > two.cpp IIRC, Automake 1.5 supports subdirectories; using lib_LTLIBRARIES = libfoo.la libfoo_la_SOURCES = \ c/one.c \ cpp/one.cpp \ c/two.c \ cpp/t

Re: Need help with problem...

2001-09-25 Thread Guido Draheim
use the easy way. the maintanance problems of the hard way have no real benefit over doing some renamings. And if there are other reasons that you are not supposed to rename something, well, then you could use the rename trick. this is - you add the following two pattern rules to your makefile

Need help with problem...

2001-09-25 Thread Eric Lemings
Hello all, Suppose you have the following Makefile.am. lib_LTLIBRARIES = libfoo.la libfoo_la_SOURCES = \     one.c \     one.cpp \     two.c \     two.cpp I need the library to contain both the C object files and the C++ object files.  There are two ways that I can think of to do this: the easy w

Need help to compile

2001-02-05 Thread Florent. Devin
Hi, How can I compile a program which is not C or C++, Fortran... I have got this rule for a Makefile, but I do not know how to put this in a Auto system. .SUFFIXES: .cmi .cmo .cmx .c %.cmi: %.mli $(COMPILE) $< %.cmo: %.ml $(OCAMLC) $(BYTECOMPFLAGS) $< %.cmx: %.ml $(OC

Re: Need help !

2000-10-26 Thread Alexandre Oliva
On Oct 26, 2000, Thomas Nagler <[EMAIL PROTECTED]> wrote: > Using the Makfile.am below starts in compiling the files without > doing sysdep before. Therefore they miss sysdep.inc and sysdep.h files. Add to Makefile.am the line: $(libgetorb_a_OBJECTS) $(getorb_OBJECTS): sysdep.h sysdep.inc > M

Need help !

2000-10-26 Thread Thomas Nagler
Dear "Automakers" I am a new user of automake, which I find realy quite useful. But by the way I have a problem, which kept me busy the last 4 days, and which is not working by now. Perhaps you can help me to get it run: I am working on a SUN SOlaris 2.7 and a Linux SUSE 7.0 The automake is the

Re: Need help with Windows port for GNU make (+ DOS pretesters)

2000-05-09 Thread Eli Zaretskii
> Date: Tue, 9 May 2000 10:18:19 -0400 (EDT) > From: "Paul D. Smith" <[EMAIL PROTECTED]> > > BTW, while Eli Zaretskii is still providing excellent support for the > DOS port of GNU make, it would be great if we had a few more pretesters > for this port, as well. I second this. (By "the DOS port

Re: Need help with Windows port for GNU make (+ DOS pretesters)

2000-05-09 Thread Rob Tulloh
EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, May 09, 2000 4:18 PM Subject: Need help with Windows port for GNU make (+ DOS pretesters) > Hi all. > > Recently Rob Tulloh has notified me that he's no longer able to give th

Need help with Windows port for GNU make (+ DOS pretesters)

2000-05-09 Thread Paul D. Smith
Hi all. Recently Rob Tulloh has notified me that he's no longer able to give the maintenance of the Windows port of GNU make the attention he would like, due to other demands on his time. I would like to publicly thank him for his many years of dedication to and support of that effort, and I hop