diff options
author | Greg Ungerer <gerg@uclinux.org> | 2014-08-21 22:02:10 +1000 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2014-09-29 09:18:35 +1000 |
commit | 3ba885f524b9cca1f0975e7bf00eddb275407b74 (patch) | |
tree | 3d3f52f95826a46b28050ce815652e910b0b28b0 /arch/m68k/68360/Makefile | |
parent | 18cb3faf6fc72ccfc2965aeec9e04fa7b0047c4c (diff) |
m68k: move non-mmu 68360 platform code
The non-mmu 68360 specific code is inconsistently placed under a directory
named "platform". Move it to arch/m68k/ along with the other platform and
board directories.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/68360/Makefile')
-rw-r--r-- | arch/m68k/68360/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/m68k/68360/Makefile b/arch/m68k/68360/Makefile new file mode 100644 index 000000000000..f6f434383049 --- /dev/null +++ b/arch/m68k/68360/Makefile @@ -0,0 +1,12 @@ +# +# Makefile for arch/m68knommu/platform/68360. +# +model-y := ram +model-$(CONFIG_ROMKERNEL) := rom + +obj-y := config.o commproc.o entry.o ints.o + +extra-y := head.o + +$(obj)/head.o: $(obj)/head-$(model-y).o + ln -sf head-$(model-y).o $(obj)/head.o |