#
# Makefile for the PCI bus specific drivers.
#
# 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).
#
# Note 2! The CFLAGS definition is now inherited from the
# parent makefile.
#

ifdef SMP
.S.o:
	$(CC) -D__ASSEMBLY__ $(AFLAGS) -c $< -o $*.o
else
.S.o:
	$(CC) -D__ASSEMBLY__ -c $< -o $*.o
endif

O_OBJS   := pnpmod.o proc.o proc_ix.o drivers.o \
	bios.o biosgetc.o biosgetdev.o biosgetn.o biosret32.o \
	isacard.o
O_TARGET := pnp.o

include $(TOPDIR)/Rules.make

