forked from Minki/linux
c0e0c89c08
Compiling for the m68knommu/68328 Palm/Pilot target you get: AS arch/m68k/platform/68328/head-pilot.o arch/m68k/platform/68328/head-pilot.S:37:23: fatal error: bootlogo.rh: No such file or directory The build for this target used to do a conversion on a C coded boot logo and include this in the head assembler code. This got broken by changes to the local Makefile. Clean all this up by just including the C coded boot logo struct in the C code. With the appropriate alignment attribute there is no difference to the way it can be used. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
22 lines
430 B
Makefile
22 lines
430 B
Makefile
#
|
|
# Makefile for arch/m68knommu/platform/68328.
|
|
#
|
|
|
|
model-y := ram
|
|
model-$(CONFIG_ROMKERNEL) := rom
|
|
|
|
head-y = head-$(model-y).o
|
|
head-$(CONFIG_PILOT) = head-pilot.o
|
|
head-$(CONFIG_DRAGEN2) = head-de2.o
|
|
|
|
obj-y += entry.o ints.o timers.o
|
|
obj-$(CONFIG_M68328) += config.o
|
|
obj-$(CONFIG_ROM) += romvec.o
|
|
|
|
extra-y := head.o
|
|
|
|
$(obj)/head.o: $(obj)/$(head-y)
|
|
ln -sf $(head-y) $(obj)/head.o
|
|
|
|
clean-files := $(obj)/head.o $(head-y)
|