mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-20 02:34:23 +08:00
d7bd15f67e
On Sun, Apr 19, 2009 at 10:01:50PM +0200, Robert P. J. Day wrote: > ./arch/cris/arch-v32/kernel/Makefile:obj-$(CONFIG_ETRAXFS_SIM) += vcs_hook.o > > there appears to be no definition of ETRAXFS_SIM anywhere. There hasn't been a vcs_hook.c file here for ages. Remove the line from the Makefile. Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com> Reported-by: "Robert P. J. Day" <rpjday@crashcourse.ca>
19 lines
356 B
Makefile
19 lines
356 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
extra-y := head.o
|
|
|
|
|
|
obj-y := entry.o traps.o irq.o debugport.o \
|
|
process.o ptrace.o setup.o signal.o traps.o time.o \
|
|
cache.o cacheflush.o
|
|
|
|
obj-$(CONFIG_SMP) += smp.o
|
|
obj-$(CONFIG_ETRAX_KGDB) += kgdb.o kgdb_asm.o
|
|
obj-$(CONFIG_ETRAX_FAST_TIMER) += fasttimer.o
|
|
obj-$(CONFIG_MODULES) += crisksyms.o
|
|
|
|
clean:
|
|
|