#
# Makefile for network devices 
#
# 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 definitions are now inherited from the
# parent makes..
#

O_TARGET := net.o

# Object file lists.

export-objs := net_init.o

obj-y := 

# Each configuration option enables a list of files 

obj-$(CONFIG_NET) += net_init.o Space.o setup.o loopback.o
obj-$(CONFIG_NETDEV_DM9000) += dm9000x.o

include $(TOPDIR)/Rules.make

