summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/src/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-05-17 20:41:13 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-05-17 20:41:13 +0000
commit05df0a846f436295a490cc9ac19e5a4061c3a575 (patch)
tree886d4b9da28181bc0e7fe64a193b2642dcb3f5b2 /c/src/exec/score/src/Makefile.in
parentPatch from D. V. Henkel-Wallace <gumby@zembu.com> to remove compiler (diff)
downloadrtems-05df0a846f436295a490cc9ac19e5a4061c3a575.tar.bz2
Thread Handler split into multiple files. Eventually, as RTEMS is
split into one function per file, this will decrease the size of executables.
Diffstat (limited to '')
-rw-r--r--c/src/exec/score/src/Makefile.in13
1 files changed, 12 insertions, 1 deletions
diff --git a/c/src/exec/score/src/Makefile.in b/c/src/exec/score/src/Makefile.in
index eee1216a9e..f596f52d24 100644
--- a/c/src/exec/score/src/Makefile.in
+++ b/c/src/exec/score/src/Makefile.in
@@ -19,9 +19,20 @@ VPATH = @srcdir@
MP_PIECES_yes_V = mpci objectmp threadmp
MP_PIECES = $(MP_PIECES_$(HAS_MP)_V)
+THREAD_PIECES=\
+ thread threadchangepriority threadclearstate threadclose \
+ threadcreateidle threaddelayended threaddispatch \
+ threadevaluatemode threadget threadhandler \
+ threadidlebody threadinitialize threadloadenv \
+ threadready threadresettimeslice threadrestart \
+ threadsetpriority threadsetstate threadsettransient \
+ threadstackallocate threadstackfree threadstart \
+ threadstartmultitasking threadtickletimeslice \
+ threadyieldprocessor
+
# C and C++ source names, if any, go here -- minus the .c or .cc
C_PIECES=apiext chain coremsg coremutex coresem heap interr \
- isr object thread threadq tod userext \
+ isr object $(THREAD_PIECES) threadq tod userext \
watchdog wkspace $(MP_PIECES)
C_FILES=$(C_PIECES:%=%.c)
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)