Makefile 392 B

1234567891011121314151617181920
  1. #
  2. # Makefile for the linux kernel.
  3. #
  4. extra-$(CONFIG_MMU) := head.o
  5. extra-$(CONFIG_SUN3) := sun3-head.o
  6. extra-y += vmlinux.lds
  7. obj-y := entry.o irq.o m68k_ksyms.o module.o process.o ptrace.o setup.o \
  8. signal.o sys_m68k.o syscalltable.o time.o traps.o
  9. obj-$(CONFIG_MMU) += ints.o vectors.o
  10. ifndef CONFIG_MMU_SUN3
  11. obj-y += dma.o
  12. endif
  13. ifndef CONFIG_MMU
  14. obj-y += init_task.o
  15. endif