I'm getting an error when I execute 'make dep', after downloading the
2.4.20 kernel source, and executing 'make config'. The error is:
*** End of Linux kernel configuration.
*** Check the top-level Makefile for additional configuration.
*** Next, you must run 'make dep'.
debian:/usr/src/linux-2.4.20# make -f Makefile dep
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -o
scripts/mkdep scripts/mkdep.c
make[1]: Entering directory `/usr/src/linux-2.4.20/arch/i386/boot'
make[1]: *** No rule to make target `dep'. Stop.
make[1]: Leaving directory `/usr/src/linux-2.4.20/arch/i386/boot'
make: *** [archdep] Error 2
When I examine the makefile in /usr/src/linux-2.4.20/arch/i386/boot,
'dep:' is indeed an 'empty' target, i.e., there's no rule to make it.
How do I successfully make the dependencies?
Regards,
Wesley Aman