summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/src/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/score/src/Makefile.in')
-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)