1#
2# Makefile for the SNI specific part of the kernel
3#
4# Note! Dependencies are done automagically by 'make dep', which also
5# removes any old dependencies. DON'T put your own dependencies here
6# unless it's something special (ie not a .c file).
7#
8
9USE_STANDARD_AS_RULE := true
10
11all:	sni.o int-handler.o
12
13O_TARGET := sni.o
14
15obj-y	 		+= int-handler.o io.o irq.o pcimt_scache.o reset.o \
16			   setup.o
17
18obj-$(CONFIG_PCI)	+= pci.o
19
20int-handler.o: int-handler.S
21
22include $(TOPDIR)/Rules.make
23