#
# Makefile for the linux 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).
#

O_TARGET		:= mach-ipaq.o

# Common support (must be linked before board specific support)
obj-y := 
obj-m :=
obj-n :=
obj-  :=

export-objs :=	ipaq-sleeve.o ipaq_hal.o ipaq-mtd-asset.o

obj-$(CONFIG_IPAQ_HAL) += ipaq_hal.o ipaq-mtd-asset.o
obj-$(CONFIG_IPAQ_SLEEVE) += ipaq-sleeve.o
obj-$(CONFIG_IPAQ_MTD_ASSET) += ipaq-mtd-asset.o

include $(TOPDIR)/Rules.make

