summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/src/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 19:43:52 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 19:43:52 +0000
commit317a5b52b5060ef98ffe2b3bb3f980165fea8e81 (patch)
treed9a0c0a0aeaad1553008465e15c71c54e0393008 /c/src/exec/score/src/Makefile.in
parentSplit types.s into individual files. (diff)
downloadrtems-317a5b52b5060ef98ffe2b3bb3f980165fea8e81.tar.bz2
Split object.c into multiple files.
Diffstat (limited to 'c/src/exec/score/src/Makefile.in')
-rw-r--r--c/src/exec/score/src/Makefile.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/c/src/exec/score/src/Makefile.in b/c/src/exec/score/src/Makefile.in
index f4cbf9d352..285059eced 100644
--- a/c/src/exec/score/src/Makefile.in
+++ b/c/src/exec/score/src/Makefile.in
@@ -22,6 +22,12 @@ INSTALL_CHANGE = @INSTALL_CHANGE@
MP_C_PIECES_yes_V = mpci objectmp threadmp
MP_C_PIECES = $(MP_C_PIECES_$(HAS_MP)_V)
+OBJECT_C_PIECES = object objectallocate objectallocatebyindex \
+ objectclearname objectcomparenameraw objectcomparenamestring \
+ objectcopynameraw objectcopynamestring objectextendinformation \
+ objectfree objectget objectgetbyindex objectgetnext \
+ objectinitializeinformation objectnametoid objectshrinkinformation
+
THREAD_C_PIECES = thread threadchangepriority threadclearstate threadclose \
threadcreateidle threaddelayended threaddispatch threadevaluatemode \
threadget threadhandler threadidlebody threadinitialize threadloadenv \
@@ -32,7 +38,7 @@ THREAD_C_PIECES = thread threadchangepriority threadclearstate threadclose \
# 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 $(THREAD_C_PIECES) threadq userext watchdog wkspace \
+ $(OBJECT_C_PIECES) $(THREAD_C_PIECES) threadq userext watchdog wkspace \
$(MP_C_PIECES)
C_FILES = $(C_PIECES:%=%.c)
C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)