[3435] in linux-net channel archive
Re: Cant Compile in 2.0
daemon@ATHENA.MIT.EDU (tony@trishul.sci.gu.edu.au)
Mon Jun 24 00:18:10 1996
Date: Mon, 24 Jun 1996 13:32:33 +1000
To: ae4ej@ae4ej.ampr.org, linux-net@vger.rutgers.edu
From: tony@trishul.sci.gu.edu.au
ae4ej@ae4ej.ampr.org wrote:
> Does anyone have any ideas as to why I cant compile with the new
> 2.0 kernel I have installed..
> It works just fine when I boot up with the 1.2.13 on a floppy, I can compile
> just fine.. But when I boot off the hard drive in 2.0 , no go. For example,
> I can be ib the /usr/src/linux directory, then type make config, and get
> No rule to target 'config'. Stop.
> This is an example, it dosent matter what I am trying to compile..
> I have the new gcc 2.7.2 installed...
> Has anyone seen this b4?
If you read the linux<-2.0.0>/Documentation/Changes, then you would
find out that `make' will no longer works properly due to a bug in it.
Get the _fixed_ sources for make-3.74 and recomple it, or grab the
precompiled binaries...
ftp://sunsite.unc.edu/pub/Linux/devel/make/make-3.74-direntfix-elf.tgz
Meanwhile, this should get you going in the mean time: try using the
`-f' flag to make to specify the Makefile...
% make -f Makefile config
...
% make -f Makefile dep
...
% make -f Makefile zImage
...etc
Cheers
Tony