#
# Makefile for common code for Toshiba TX4938 based systems
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#

.S.o:
	$(CC) $(AFLAGS) -c $< -o $@

O_TARGET := tx4938.o

obj-y := prom.o
obj-y += setup.o
obj-y += irq.o
obj-y += handler.o
obj-y += rtc_rx5c348.o
obj-y += puts.o

obj-$(CONFIG_TX4938_NAND_BOOT) += nandbootvector.o

obj-$(CONFIG_KGDB) += dbgio.o

include $(TOPDIR)/Rules.make
