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

# Name of this component (the directory this file is stored in)
COMP = test

# Source files for this component
C_FILES = testhelper.c test_libLimits.c test_messagePass.c test_nvram.c test_semaphore4.c test_bigargs.c test_procQueue.c test_semaphore.c test_libStdio.c test_recursion.c test_ttydriver.c test_deltaQueue.c test_libStdlib.c test_schedule.c test_libString.c test_semaphore2.c test_libCtype.c test_semaphore3.c test_memory.c test_bufpool.c test_preempt.c test_ether.c test_mailbox.c test_system.c

S_FILES =

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