# This Makefile contains rules to build this directory.

# Name of this component (the directory this file is stored in)
COMP = device/ether

# Source files for this component
C_FILES = etherInit.c etherOpen.c etherClose.c etherRead.c etherWrite.c etherControl.c etherInterrupt.c colon2mac.c allocRxBuffer.c waitOnBit.c vlanInit.c vlanOpen.c vlanClose.c
S_FILES =

# Add the files to the compile source path
DIR = ${TOPDIR}/${COMP}
COMP_SRC += ${S_FILES:%=${DIR}/%} ${C_FILES:%=${DIR}/%}
