[Haifux] compiling

2005-12-27 Thread yakouba abaya
suppose i have : ABC.h , A.c , B.c , C.c is it possible to build all three source files to one object file ? gcc -c A.c | gcc -c B.c | gcc -c C.c gcc A.o B.o C.o -o ABC.o ??? inorder to do : gcc ABC.o app.c -o app instead of : gcc A.o B.o C.o app.c -o app

Re: [Haifux] compiling

2005-12-27 Thread Muli Ben-Yehuda
On Tue, Dec 27, 2005 at 02:02:06PM +0200, yakouba abaya wrote: suppose i have : ABC.h , A.c , B.c , C.c is it possible to build all three source files to one object file ? gcc -c A.c | gcc -c B.c | gcc -c C.c gcc A.o B.o C.o -o ABC.o ??? Not without extensive trickery. Why

[Haifux] Compiling your own kernel

2003-10-06 Thread Haim Cohen
Hi, Does someone know a good source for kernel compilation and installation step by step ? I am trying to compile my own kernel, (2.4.22 - I did not go too far - no source altering, just made few modifications to .config file). However, I had few problems - when I made make modules_insall it

Re: [Haifux] Compiling your own kernel

2003-10-06 Thread Muli Ben-Yehuda
On Mon, Oct 06, 2003 at 04:28:30PM +0200, Haim Cohen wrote: Hi, Does someone know a good source for kernel compilation and installation step by step ? The README file at the top level of the kernel sources is reasonable. There's also a kernel compilation HOWTO, but it's fairly out of date,