# This Makefile contains rules to build this directory.

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

# Source files for this component
C_FILES = ethInit.c ethOpen.c ethRead.c ethWrite.c ethControl.c ethInterrupt.c allocRxBuffer.c ethStat.c ethClose.c colon2mac.c
S_FILES =

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