#
# Makefile for the NEC CMB-VR4133 specific parts of the kernel
#
# 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

O_TARGET := cmbvr4133.o

all: cmbvr4133.o

obj-y	:= init.o setup.o lcd44780.o ricoh_rtc.o

obj-$(CONFIG_PCI)		+= pci_fixup.o m1535plus.o
obj-$(CONFIG_PC_KEYB)		+= kbd.o
obj-$(CONFIG_NEC_CANDY)		+= candy_setup.o
obj-$(CONFIG_ROCKHOPPER)       += irq.o

export-objs := candy_setup.o ricoh_rtc.o m1535plus.o

include $(TOPDIR)/Rules.make

