#
# Makefile for Intel EtherExpress Pro/100  driver.
#

# The target object and module list name.

O_TARGET	:= e100.o

# Objects that export symbols.

export-objs	:= e100_main.o

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

e100-objs	:= e100_config.o e100_main.o e100_proc.o eeprom.o

# Object file lists.

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

# Each configuration option enables a list of files.

obj-$(CONFIG_E100)		+= $(O_TARGET)

# The global Rules.make.

include $(TOPDIR)/Rules.make

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