mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 10:11:36 +00:00
64ac24e738
Semaphores are no longer performance-critical, so a generic C implementation is better for maintainability, debuggability and extensibility. Thanks to Peter Zijlstra for fixing the lockdep warning. Thanks to Harvey Harrison for pointing out that the unlikely() was unnecessary. Signed-off-by: Matthew Wilcox <willy@linux.intel.com> Acked-by: Ingo Molnar <mingo@elte.hu>
14 lines
299 B
Makefile
14 lines
299 B
Makefile
#
|
|
# Makefile for the Linux/M32R kernel.
|
|
#
|
|
|
|
extra-y := head.o init_task.o vmlinux.lds
|
|
|
|
obj-y := process.o entry.o traps.o align.o irq.o setup.o time.o \
|
|
m32r_ksyms.o sys_m32r.o signal.o ptrace.o
|
|
|
|
obj-$(CONFIG_SMP) += smp.o smpboot.o
|
|
obj-$(CONFIG_MODULES) += module.o
|
|
|
|
EXTRA_AFLAGS := -traditional
|