# Makefile for the VR41XX-specific parts of the kernel
#
# This file is subject to the terms and conditions of the GNU General Public
# License.  See the file "COPYING" in the main directory of this archive
# for more details.
#
# Copyright (C) 1999 by Bradley D. LaRonde and Mike Klar.
#
# 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.s:
	$(CPP) $(AFLAGS) $< -o $@
.S.o:
	$(CC) $(AFLAGS) -c $< -o $@

O_TARGET := casio-e15.o
		
all: casio-e15.o

# All of the (potential) objects that export symbols.
# This list comes from 'grep -l EXPORT_SYMBOL *.[hc]'.

export-objs     :=	serial.o


obj-y	 += setup.o prom.o
#obj-$(CONFIG_REMOTE_DEBUG) += gdb.o
obj-$(CONFIG_IDE)	+= ide-e15.o
obj-$(CONFIG_SERIAL) += serial.o

include $(TOPDIR)/Rules.make

