1da177e4c3
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
22 lines
514 B
Makefile
22 lines
514 B
Makefile
#
|
|
# Makefile for arch/m68knommu/platform/68328.
|
|
#
|
|
|
|
head-y = head-$(MODEL).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
|
|
|
|
extra-y := head.o
|
|
extra-$(CONFIG_M68328) += bootlogo.rh head.o
|
|
|
|
$(obj)/bootlogo.rh: $(src)/bootlogo.h
|
|
perl $(src)/bootlogo.pl < $(src)/bootlogo.h > $(obj)/bootlogo.rh
|
|
|
|
$(obj)/head.o: $(obj)/$(head-y)
|
|
ln -sf $(head-y) $(obj)/head.o
|
|
|
|
clean-files := $(obj)/bootlogo.rh $(obj)/head.o $(head-y)
|