mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
875d43e72b
Start cleaning 32-bit vs. 64-bit configuration. Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
11 lines
232 B
Makefile
11 lines
232 B
Makefile
#
|
|
# Makefile for the DECstation prom monitor library routines
|
|
# under Linux.
|
|
#
|
|
|
|
lib-y += init.o memory.o cmdline.o identify.o console.o
|
|
|
|
lib-$(CONFIG_32BIT) += locore.o
|
|
lib-$(CONFIG_64BIT) += call_o32.o
|
|
|
|
EXTRA_AFLAGS := $(CFLAGS)
|