#
# Makefile for for common code for the NEC VR7701 chip
#
# 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).
#

USE_STANDARD_AS_RULE := true

all: vr7701.o

O_TARGET := vr7701.o

obj-y    := irq.o int_handler.o irq_vr7701.o pci_ops.o serial.o nmi.o 

obj-$(CONFIG_KGDB)      += kgdb_io.o

include $(TOPDIR)/Rules.make

