Re: Modify Output to look like Linux Kernel

2007-07-05 Thread Brendon Costa
Thomas Dickey wrote: > On Thu, 5 Jul 2007, Bob Friesenhahn wrote: > >> A big difference between Automake projects and building the Linux >> kernel is that building the linux kernel is practically assured to >> succeed where as building Automake projects may fail and require >> correction by the en

Re: Modify Output to look like Linux Kernel

2007-07-05 Thread Bob Rossi
On Thu, Jul 05, 2007 at 05:34:19PM -0400, Thomas Dickey wrote: > On Thu, 5 Jul 2007, Bob Friesenhahn wrote: > > >A big difference between Automake projects and building the Linux kernel > >is that building the linux kernel is practically assured to succeed where > >as building Automake projects

Re: Modify Output to look like Linux Kernel

2007-07-05 Thread Thomas Dickey
On Thu, 5 Jul 2007, Bob Friesenhahn wrote: A big difference between Automake projects and building the Linux kernel is that building the linux kernel is practically assured to succeed where as building Automake projects may fail and require correction by the end user (who needs to see what is

Re: Modify Output to look like Linux Kernel

2007-07-05 Thread Bob Friesenhahn
On Thu, 5 Jul 2007, Johannes Bauer wrote: Hello list, how can I modify the output of an Automake project so that it does not display the whole command line, but simply the short version like the Linux Kernel does, e.g.: CC init/version.o CC init/do_mounts.o LD init/mounts.o

Modify Output to look like Linux Kernel

2007-07-05 Thread Johannes Bauer
Hello list, how can I modify the output of an Automake project so that it does not display the whole command line, but simply the short version like the Linux Kernel does, e.g.: CC init/version.o CC init/do_mounts.o LD init/mounts.o CC init/initramfs.o CC init/c

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