# This Makefile contains rules to build files in the device/tty/ directory.

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

# Source files for this component
C_FILES = ttyControl.c ttyGetc.c ttyInter_in.c ttyInter_out.c ttyInterrupt.c \
          ttyInit.c ttyKickOut.c ttyPutc.c ttyRead.c ttyWrite.c
S_FILES =

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