#
# Makefile for Intel Pro/1000  driver.
#

# The target object and module list name.

O_TARGET	:= e1000.o

# Objects that export symbols.

export-objs	:= e1000_main.o

# To use if driver has more than one file
list-multi := e1000.o

e1000-objs	:= e1000_main.o e1000_fxhw.o e1000_phy.o e1000_proc.o

# Object file lists.

obj-y	:=
obj-m	:=
obj-n	:=
obj-	:=

# Each configuration option enables a list of files.

obj-$(CONFIG_E1000)		+= e1000.o

# The global Rules.make.

include $(TOPDIR)/Rules.make

e1000.o: $(e1000-objs)
	$(LD) -r -o $@ $(e1000-objs)
