forked from luck/tmp_suning_uos_patched
acb0c7accd
The 68EZ328 and 68VZ328 platforms currently try to process their bootlogo.h to make it clean to include in asm files. This is no longer used, the bootlogo.h file is now included only in C code, so remove all the processing code in the 68EZ328 and 68VZ328 Makefiles. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
12 lines
248 B
Makefile
12 lines
248 B
Makefile
#
|
|
# Makefile for arch/m68knommu/platform/68VZ328.
|
|
#
|
|
|
|
obj-y := config.o
|
|
extra-$(DRAGEN2):= screen.h
|
|
|
|
$(obj)/screen.h: $(src)/screen.xbm $(src)/xbm2lcd.pl
|
|
perl $(src)/xbm2lcd.pl < $(src)/screen.xbm > $(obj)/screen.h
|
|
|
|
clean-files := $(obj)/screen.h
|