You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
310 B
12 lines
310 B
#
|
|
# Makefile for the generic architecture
|
|
#
|
|
|
|
EXTRA_CFLAGS := -Iarch/x86/kernel
|
|
|
|
obj-y := probe.o default.o
|
|
obj-$(CONFIG_X86_NUMAQ) += numaq.o
|
|
obj-$(CONFIG_X86_SUMMIT) += summit.o
|
|
obj-$(CONFIG_X86_BIGSMP) += bigsmp.o
|
|
obj-$(CONFIG_X86_ES7000) += es7000.o
|
|
obj-$(CONFIG_X86_ES7000) += ../../x86/mach-es7000/
|
|
|