summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/src/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 20:36:11 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 20:36:11 +0000
commitdfbfa2b029057682e63555751183f497cdc790b0 (patch)
tree70c9bcc0aeedf4b7c5caab6485a8ce83ab1db652 /c/src/exec/score/src/Makefile.in
parentThe object memfile.o was being included in the miniIMFS even though it (diff)
downloadrtems-dfbfa2b029057682e63555751183f497cdc790b0.tar.bz2
Split threadq.c into multiple files.
Diffstat (limited to 'c/src/exec/score/src/Makefile.in')
-rw-r--r--c/src/exec/score/src/Makefile.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/c/src/exec/score/src/Makefile.in b/c/src/exec/score/src/Makefile.in
index 285059eced..1b83b50883 100644
--- a/c/src/exec/score/src/Makefile.in
+++ b/c/src/exec/score/src/Makefile.in
@@ -36,10 +36,16 @@ THREAD_C_PIECES = thread threadchangepriority threadclearstate threadclose \
threadstart threadstartmultitasking threadtickletimeslice \
threadyieldprocessor
+THREADQ_C_PIECES= threadq threadqdequeue threadqdequeuefifo \
+ threadqdequeuepriority threadqenqueue threadqenqueuefifo \
+ threadqenqueuepriority threadqextract threadqextractfifo \
+ threadqextractpriority threadqextractwithproxy threadqfirst \
+ threadqfirstfifo threadqfirstpriority threadqflush threadqtimeout
+
# C and C++ source names, if any, go here -- minus the .c or .cc
C_PIECES = apiext chain coremsg coremutex coresem coretod heap interr isr \
- $(OBJECT_C_PIECES) $(THREAD_C_PIECES) threadq userext watchdog wkspace \
- $(MP_C_PIECES)
+ $(OBJECT_C_PIECES) $(THREAD_C_PIECES) $(THREADQ_C_PIECES) userext \
+ watchdog wkspace $(MP_C_PIECES)
C_FILES = $(C_PIECES:%=%.c)
C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)