summaryrefslogtreecommitdiffstats
path: root/c/src/exec/rtems/src/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-05-17 21:02:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-05-17 21:02:16 +0000
commitc4d69e21a751d4c907db9e8f4bb9bd38693075b1 (patch)
treeb12402bce88e14077b0b6926293f7121b0c27822 /c/src/exec/rtems/src/Makefile.in
parentThread Handler split into multiple files. Eventually, as RTEMS is (diff)
downloadrtems-c4d69e21a751d4c907db9e8f4bb9bd38693075b1.tar.bz2
Split Task Manager into multiple files. Eventually this effort will
reduce the size of executables.
Diffstat (limited to 'c/src/exec/rtems/src/Makefile.in')
-rw-r--r--c/src/exec/rtems/src/Makefile.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/c/src/exec/rtems/src/Makefile.in b/c/src/exec/rtems/src/Makefile.in
index 990568c5b6..1cdf244594 100644
--- a/c/src/exec/rtems/src/Makefile.in
+++ b/c/src/exec/rtems/src/Makefile.in
@@ -19,9 +19,14 @@ VPATH = @srcdir@
MP_PIECES_yes_V = eventmp mp msgmp partmp regionmp semmp signalmp taskmp
MP_PIECES = $(MP_PIECES_$(HAS_MP)_V)
+TASK_PIECES=\
+ tasks taskcreate taskdelete taskgetnote taskident taskinitusers \
+ taskmode taskrestart taskresume tasksetnote tasksetpriority \
+ taskstart tasksuspend taskwakeafter taskwakewhen
+
C_PIECES=attr clock dpmem event intr intrbody msg \
part ratemon region sem signal \
- tasks timer $(MP_PIECES)
+ $(TASK_PIECES) timer $(MP_PIECES)
C_FILES=$(C_PIECES:%=%.c)
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)